Skip to content

Commit

Permalink
improve channel translate (#1627)
Browse files Browse the repository at this point in the history
  • Loading branch information
loveloki authored Nov 28, 2024
2 parents f688610 + da79d5e commit b6d961f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ JavaScript 是一个因其松散规则和动态特性而闻名的具有挑战性

尽管我们最初专注于 Server Action 用于客户端/服务器数据传输,但我们对 React 的理念是在所有平台和环境中提供相同的编程模型。在可能的情况下,如果我们在客户端引入一个功能,我们也会使它在服务器上起作用,反之亦然。这一理念使我们能够创建一组 API,无论你的应用在何处运行,都可以工作,从而使以后更容易升级到不同的环境。

Action 现在在 Canary 通道中可用,并将在下一个 React 发布版本中发布。
Action 现在在 Canary 渠道中可用,并将在下一个 React 发布版本中发布。

## React Canary 版本中的新特性 {/*new-features-in-react-canary*/}

Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/2024/04/25/react-19.md
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ function Heading({children}) {

服务器组件是一种新的选项,允许在打包前提前渲染组件,在与你的客户端应用程序或 SSR 服务器不同的环境中。这个独立的环境就是 React 服务器组件中的 "服务器"。服务器组件可以在你的 CI 服务器上在构建时运行一次,或者可以在每次请求时使用 web 服务器运行。

React 19 包含了所有从 Canary 频道引入的 React 服务器组件功能。这意味着,现在可以将 React 19 作为 peer 依赖项来发布带有服务器组件的库,使用 `react-server` [导出条件](https://github.com/reactjs/rfcs/blob/main/text/0227-server-module-conventions.md#react-server-conditional-exports) 用于支持 [全栈 React 架构](/learn/start-a-new-react-project#which-features-make-up-the-react-teams-full-stack-architecture-vision) 的框架。
React 19 包含了所有从 Canary 渠道引入的 React 服务器组件功能。这意味着,现在可以将 React 19 作为 peer 依赖项来发布带有服务器组件的库,使用 `react-server` [导出条件](https://github.com/reactjs/rfcs/blob/main/text/0227-server-module-conventions.md#react-server-conditional-exports) 用于支持 [全栈 React 架构](/learn/start-a-new-react-project#which-features-make-up-the-react-teams-full-stack-architecture-vision) 的框架。


<Note>
Expand Down

0 comments on commit b6d961f

Please sign in to comment.