React 16.x 蓝图[双语版]

栏目: IOS · Android · 发布时间: 5年前

内容简介:译者注:译者并不精通英语, 但是深知英语对于程序员的重要性, 所以译者在翻译的时候保留了英语原文, 希望给你一个原滋原味的阅读体验并且能熟悉一些常见的英文.希望有读者可以指出我的翻译错误, 感激不尽.
React 16.x 蓝图   2018年11月27号,Dan Abramov

React 16.x Roadmap November 27, 2018 by Dan Abramov

你可能在之前的文章和演讲中已经听说过这些特性, 比如 "Hooks", "Suspense", 和 "Concurrent Rendering". 在该博文中, 我们将看一下怎么将它们融合在一起和它们在 React 稳定版中可用的预期时间线.

You might have heard about features like "Hooks", "Suspense", and "Concurrent Rendering" in the previous blog posts and talks. In this post, we’ll look at how they fit together and the expected timeline for their availability in a stable release of React.

简而言之

tl;dr

我们计划把 React 新特性的推出分为以下几个里程碑:
  • React 16.6:为了代码分割的 Suspense( 已经发布 )
  • React 16.9:为了数据获取的 Suspense(~mid 2019)
We plan to split the rollout of new React features into the following milestones:
  • React 16.6: Suspense for Code Splitting (already shipped)
  • React 16.7: React Hooks (~Q1 2019)
  • React 16.8: Concurrent Mode (~Q2 2019)
  • React 16.9: Suspense for Data Fetching (~Q3 2019)
这些都是预计, 细节可能会随着我们的推进而改变. 这里还有至少两个项目我们打算在 2019 年完成, 它们需要更多的探索并且还没有和特定的版本捆绑在一起.
  • 为了服务端渲染的 Suspense
These are estimates, and the details may change as we’re further along. There’s at least two more projects we plan to complete in 2019. They require more exploration and aren’t tied to a particular release yet:
  • Modernizing React DOM
  • Suspense for Server Rendering
我们预计在接下来的几个月会更加清晰它们的发布时间线

We expect to get more clarity on their timeline in the coming months.

注意:

该文章只是一个蓝图 — 其中没有任何内容需要您立即关注. 当发布每一个功能时, 我们会发布一篇完整的文章宣布它们.

This post is just a roadmap — there is nothing in it that requires your immediate attention. When each of these features are released, we’ll publish a full blog post announcing them.

发布时间线

Release Timeline

我们对所有的这些功能如何组合在一起有个想法, 但我们会在每一个部分准备就绪之后发布它, 以便于你可以更快的测试并使用它们.在单独查看它们的时候, API 的设计看起来不是那么合理; 这篇文章列出了我们计划的主要部分, 它可以帮助你了解整体情况.(参阅我们的版本策略, 了解我们对于稳定性的承诺)

We have a single vision for how all of these features fit together, but we’re releasing each part as soon as it is ready so that you can test and start using them sooner. The API design doesn’t always make sense when looking at one piece in isolation; this post lays out the major parts of our plan to help you see the whole picture. (See our versioning policy to learn more about our commitment to stability.)

逐步发布策略可以帮助我们优化 API, 但是在某些事情尚未准备就绪的过渡时期可能令人感到迷惑. 让我们看一下不同的功能对于您的应用程序意味着什么, 他们如何关联, 以及何时开始学习和使用它们.

The gradual release strategy helps us refine the APIs, but the transitional period when some things aren’t ready can be confusing. Let’s look at what these different features mean for your app, how they relate to each other, and when you can expect to start learning and using them.

React 16.6: 为了代码分割的 Suspense (已发布)

React 16.6: Suspense for Code Splitting (shipped)

Suspense 是指 React 在组件等待某事时 "暂停" 渲染的新功能, 并且显示一个 loading 指示器. 在 React 16.6 中, Suspense 只支持一个使用场景: 懒加载组件使用 React.lazy() and <React.Suspense> .
Suspense refers to React’s new ability to "suspend" rendering while components are waiting for something, and display a loading indicator. In React 16.6, Suspense supports only one use case: lazy loading components with React.lazy() and <React.Suspense> .
const OtherComponent = React.lazy(() => import('./OtherComponent'));

function MyComponent() {
  return (
    <React.Suspense fallback={<Spinner />}>
      <div>
        <OtherComponent />
      </div>
    </React.Suspense>
  );
}
复制代码
代码分割指南中记录了使用 React.lazy()<React.Suspense> 来实现代码分割. 你可以在本文中找到另一个实用的解释
Code splitting with React.lazy() with <React.Suspense> is documented in the Code Splitting guide. You can find another practical explanation in this article.
在 Facebook, 从七月份就已经开始使用 Suspense 来进行代码分割, 并期望它保持稳定. 在 16.6.0 的初始公开发布中有一些回归, 但它们在 16.6.3 中得以修复.

We have been using Suspense for code splitting at Facebook since July, and expect it to be stable. There’s been a few regressions in the initial public release in 16.6.0, but they were fixed in 16.6.3.

代码分割只是 Suspense 的第一步. 我们对 Suspense 的长期远景包括让它处理数据获取(并与像 Apollo 这样的库集成).除了方便的编程模型, Suspense 也在 Concurrent Mode 下提供更好的用户体验. 你将在下面找到有关这些主题的信息.

Code splitting is just the first step for Suspense. Our longer term vision for Suspense involves letting it handle data fetching too (and integrate with libraries like Apollo). In addition to a convenient programming model, Suspense also provides better user experience in Concurrent Mode. You’ll find information about these topics further below.

React DOM: 从 React 16.6.0 可用

Status in React DOM: Available since React 16.6.0.

React DOM Server: 目前 Suspense 在服务端渲染中还不可用. 这不是因为缺乏关注. 我们已经开始研究一个新的异步服务端渲染器, 其将支持 Suspense, 但是这是一个大型项目, 需要占用 2019 年的大部分时间才能完成.

Status in React DOM Server: Suspense is not available in the server renderer yet. This isn’t for the lack of attention. We’ve started work on a new asynchronous server renderer that will support Suspense, but it’s a large project and will take a good chunk of 2019 to complete.

React Native: 拆包在 React Native 中并不是那么有用. 但是在给模块 Promise 的时候, 没有什么技术阻止 React.lazy()<Suspense> 工作.

Status in React Native: Bundle splitting isn’t very useful in React Native, but there’s nothing technically preventing React.lazy() and <Suspense> from working when given a Promise to a module.

建议: 如果你只进行客户端渲染, 我们建议广泛采用 React.lazy()<React.Suspense> 进行代码拆分 React 组件. 如果你进行服务端渲染, 你则必须接受等待, 直到新的服务端渲染器准备就绪.

Recommendation: If you only do client rendering, we recommend widely adopting React.lazy() and for code splitting React components. If you do server rendering, you’ll have to wait with adoption until the new server renderer is ready.

React 16.7: Hooks (~Q1 2019)

Hooks 允许你在函数组件中使用 state 和生命周期. 它们还允许你在组件之间重用有状态的逻辑, 而无需在树中引入无用的嵌套

Hooks let you use features like state and lifecycle from function components. They also let you reuse stateful logic between components without introducing extra nesting in your tree.

function Example() {
  // Declare a new state variable, which we'll call "count"
  const [count, setCount] = useState(0);

  return (
   <div>
     <p>You clicked {count} times</p>
     <button onClick={() => setCount(count + 1)}>
       Click me
     </button>
   </div>
 );
}
复制代码
Hooks介绍 和概述 是个开始的好地方. 观看这些演讲, 了解视频介绍和深度探讨.FAQ 应该可以回答你的大多数问题. 要了解更多 Hooks 背后的动机, 你可以阅读这篇文章. 这个 RFC 讨论中解释了 Hooks 的 API 设计的一些基本原理.

Hooks introduction and overview are good places to start. Watch these talks for a video introduction and a deep dive. The FAQ should answer most of your further questions. To learn more about the motivation behind Hooks, you can read this article. Some of the rationale for the API design of Hooks is explained in this RFC thread reply.

从九月开始, 在 Facebook 就已经开始内部测试 Hooks. 我们不希望在实施中出现重大 bug. Hooks 现在仅仅在 React的 16.7 alpha 版本中可用. 一些 API 预期有可能在最终的 16.7 版本中被改变(详细信息请参阅 该评论 的结尾部分)

We have been dogfooding Hooks at Facebook since September. We don’t expect major bugs in the implementation. Hooks are only available in the 16.7 alpha versions of React. Some of their API is expected to change in the final 16.7 version (see the end of this comment for details).

Hooks 代表着我们对于 React 未来的愿景. 它们解决了 React 用户直接体验问题(render props和高阶组件的 "wrapper hell", 生命周期方法中的逻辑重复), 以及我们遇到的大规模 React 优化的问题(例如使用编译器在内联组件上遇到的困难(译者注: 详细的 issue 可见 here )). Hooks 不会抛弃类. 但是, 如果 Hooks 成功了, 有可能在一个未来的主版本中可能将类的支持移至一个单独的包中, 来减少 React 的默认包尺寸.

Hooks represent our vision for the future of React. They solve both problems that React users experience directly (“wrapper hell” of render props and higher-order components, duplication of logic in lifecycle methods), and the issues we’ve encountered optimizing React at scale (such as difficulties in inlining components with a compiler). Hooks don’t deprecate classes. However, if Hooks are successful, it is possible that in a future major release class support might move to a separate package, reducing the default bundle size of React.

React DOM: 支持 Hooks 的 reactreact-dom 的第一个版本是 16.7.0-alpha.0 . 我们预计在接下来的几个月发布更多的 alphas 版本(在本文书写时, 最新的版本为 16.7.0-alpha.2 ). 你可以通过安装 react@nextreact-dom@next 来尝试它们. 不要忘记更新 react-dom — 否则 Hooks 不会工作.

Status in React DOM:The first version of react and react-dom supporting Hooks is 16.7.0-alpha.0. We expect to publish more alphas over the next months (at the time of writing, the latest one is 16.7.0-alpha.2). You can try them by installing react@next with react-dom@next. Don’t forget to update react-dom — otherwise Hooks won’t work.

React DOM Server: react-dom 的 16.7 alpha 版本用 react-dom/server 来完全支持 Hooks.

Status in React DOM Server: The same 16.7 alpha versions of react-dom fully support Hooks with react-dom/server.

React Native: 目前没有任何官方的支持在 React Native 中尝试 Hooks. 如果你喜欢冒险, 查看 此主题 来获取非官方指示. 这里有一个已知问题, useEffect 被触发的太晚, 仍然需要解决.

Status in React Native: There is no officially supported way to try Hooks in React Native yet. If you’re feeling adventurous, check out this thread for unofficial instructions. There is a known issue with useEffect firing too late which still needs to be solved.

建议: 当你准备好了, 我们鼓励你在写新组件时开始尝试使用 Hooks.确保你的团队中的每一个人都使用它们并熟悉本文档. 我们不建议你将已存在的类重写为 Hooks, 除非你已经有计划去重写它们(例如: 修复 bugs). 在这里 阅读有关采用策略的更多信息.

Recommendation: When you’re ready, we encourage you to start trying Hooks in new components you write. Make sure everyone on your team is on board with using them and familiar with this documentation. We don’t recommend rewriting your existing classes to Hooks unless you planned to rewrite them anyway (e.g. to fix bugs). Read more about the adoption strategy here.

: Concurrent Mode (~Q2 2019)

React 16.8: Concurrent Mode (~Q2 2019)

Concurrent Mode 通过非阻塞主线程渲染组件树来让 React 应用程序更具响应性. 它是选择性的加入, 并且允许 React 来中断长时间的渲染(例如, 渲染新获得的故事), 去处理高优先级事件(例如, 文本输入或者是 hover). Concurrent Mode 还通过在快速的网络连接环境中跳过不必要的 loading 状态来改善 Suspense 的用户体验.

Concurrent Mode lets React apps be more responsive by rendering component trees without blocking the main thread. It is opt-in and allows React to interrupt a long-running render (for example, rendering a new feed story) to handle a high-priority event (for example, text input or hover). Concurrent Mode also improves the user experience of Suspense by skipping unnecessary loading states on fast connections.

注意:

你之前可能已经听说过 Concurrent Mode 被称为 "async mode". 我们已经将其名字改为 Concurrent Mode, 以突出显示 React 在不同优先级上执行工作的能力. 这使得它与其他异步渲染的方法区别出来.

You might have previously heard Concurrent Mode being referred to as “async mode”. We’ve changed the name to Concurrent Mode to highlight React’s ability to perform work on different priority levels. This sets it apart from other approaches to async rendering.

// Two ways to opt in:

// 1. Part of an app (not final API)
<React.unstable_ConcurrentMode>
  <Something />
</React.unstable_ConcurrentMode>

// 2. Whole app (not final API)
ReactDOM.unstable_createRoot(domNode).render(<App />);
复制代码
目前还没有为 Concurrent Mode 写文档. 重要的是强调, 概念模型最初有可能不熟悉. 记录它的好处, 如何高效的使用它, 和它存在的缺陷是我们的高度优先事项, 并且将其称为稳定的先决条件. 在此之前,Andrew 的演讲 是最好的介绍.

There is no documentation written for the Concurrent Mode yet. It is important to highlight that the conceptual model will likely be unfamiliar at first. Documenting its benefits, how to use it efficiently, and its pitfalls is a high priority for us, and will be a prerequisite for calling it stable. Until then, Andrew’s talk is the best introduction available.

Concurrent Mode 比 Hooks 更加精致.一些 API 目前还没有正确的 "连线", 并且没有做到被期望的样子. 在撰写本文时, 我们不建议将其用于除了早期试验之外的任何事情. 我们预计并发模式本身并不存在很多错误, 但请注意, 在 <React.StrictMode> 中产生警告的组件可能无法正常工作. 另外, 我们已经看到 Concurrent Mode 在其他代码中面临性能问题, 这些问题有时被误认为是 Concurrent Mode 自身的性能问题. 例如, 一个运行在每毫秒的无主的 setInterval(fn, 1) 调用在 Concurrent Mode 下将会有更差的影响. 我们计划发布更多关于诊断和解决此类问题的向导, 作为 16.8 发布文档的一部分.

Concurrent Mode is much less polished than Hooks. Some APIs aren’t properly "wired up" yet and don’t do what they’re expected to. At the time of writing this post, we don’t recommend using it for anything except very early experimentation. We don’t expect many bugs in Concurrent Mode itself, but note that components that produce warnings in may not work correctly. On a separate note, we’ve seen that Concurrent Mode surfaces performance problems in other code which can sometimes be mistaken for performance issues in Concurrent Mode itself. For example, a stray setInterval(fn, 1) call that runs every millisecond would have a worse effect in Concurrent Mode. We plan to publish more guidance about diagnosing and fixing issues like this as part of the 16.8 release documentation.

Concurrent Mode 是我们对于 React 愿景的一个重要部分. 对于 CPU 密集型工作, 它允许非阻塞渲染, 并在渲染复杂组件树的时候保持你的应用程序的响应. 这是我们在 JSConf 冰岛演讲 的第一部分演示的. Concurrent 也令 Suspense 更好. 它允许你避免闪烁加载 loading 指示器, 如果网络足够快. 但是没有看到实例很难解释, 所以Andrew 的演讲 是目前最好的资源. Concurrent Mode 依赖于协作主线程调度程序, 我们正在与 Chrome 团队合作, 最终将此功能带到浏览器本身.

Concurrent Mode is a big part of our vision for React. For CPU-bound work, it allows non-blocking rendering and keeps your app responsive while rendering complex component trees. That’s demoed in the first part of our JSConf Iceland talk. Concurrent Mode also makes Suspense better. It lets you avoid flickering a loading indicator if the network is fast enough. It’s hard to explain without seeing so Andrew’s talk is the best resource available today. Concurrent Mode relies on a cooperative main thread scheduler, and we are collaborating with the Chrome team to eventually move this functionality into the browser itself.

React DOM: 一个非常不稳定的 Concurrent Mode 版本, 在 React 16.6 中以 unstable_ 前缀存在, 但是我们不推荐尝试它, 除非你愿意经常遇到障碍或者缺少功能. 16.7 alpha 版本包括没有 unstable__ 前缀的 React.ConcurrentModeReactDOM.createRoot , 但是我们可能在 16.7 中保持前缀, 并且只在 React 16.8 中记录和标记 Concurrent Mode 为稳定.

Status in React DOM: A very unstable version of Concurrent Mode is available behind an unstable_ prefix in React 16.6 but we don’t recommend trying it unless you’re willing to often run into walls or missing features. The 16.7 alphas include React.ConcurrentMode and ReactDOM.createRoot without an unstable_ prefix, but we’ll likely keep the prefix in 16.7, and only document and mark Concurrent Mode as stable in React 16.8.

React DOM Server: Concurrent Mode 不会直接影响服务端渲染. 它将工作在已经存在的服务端渲染中.

Status in React DOM Server: Concurrent Mode doesn’t directly affect server rendering. It will work with the existing server renderer.

React Native: 目前的计划是延迟在 React Native 中启用 Concurrent Mode, 直到 React Fabric 项目接近完成.

Status in React Native: The current plan is to delay enabling Concurrent Mode in React Native until React Fabric project is near completion.

建议: 如果你希望在未来采用 Concurrent Mode, 在 <React.StrictMode> 中包装一些组件子树并修复生成的警告是很好的第一步. 通常, 旧代码预计不会立即兼容. 例如, 在 Facebook, 我们主要打算在最近开发的代码库中使用 Concurrent Mode, 并在不久的将来保持旧代码运行在同步模式下.

Recommendation: If you wish to adopt Concurrent Mode in the future, wrapping some component subtrees in and fixing the resulting warnings is a good first step. In general it’s not expected that legacy code would immediately be compatible. For example, at Facebook we mostly intend to use the Concurrent Mode in the more recently developed codebases, and keep the legacy ones running in the synchronous mode for the near future.

: 为了数据获取的 Suspense (~mid 2019)

React 16.8: Concurrent Mode (~Q2 2019)

如前所述, Suspense 指的是能够在组件等待某事的时候 "暂停" 渲染的能力, 并且显示一个 loading 指示器. 在已经发布的 16.6 版本中, Suspense 唯一支持的使用场景就是代码分割. 在未来的 16.9 版本中, 我们还希望在使用它在为了获取数据的场景下提供官方的支持. 我们将提供与 Suspense 兼容的一个基础的 "React Cache" 的参考实现, 但是你也可以写一个你自己的. 数据获取库, 像 Apollo 和 Relay, 将能够通过遵循我们将要记录的简单规范来与 Suspense 集成.

As mentioned earlier, Suspense refers to React’s ability to “suspend” rendering while components are waiting for something, and display a loading indicator. In the already shipped React 16.6, the only supported use case for Suspense is code splitting. In the future 16.9 release, we’d like to provide officially supported ways to use it for data fetching too. We’ll provide a reference implementation of a basic "React Cache" that’s compatible with Suspense, but you can also write your own. Data fetching libraries like Apollo and Relay will be able to integrate with Suspense by following a simple specification that we’ll document.

// React Cache for simple data fetching (not final API)
import {unstable_createResource} from 'react-cache';

// Tell React Cache how to fetch your data
const TodoResource = unstable_createResource(fetchTodo);

function Todo(props) {
  // Suspends until the data is in the cache
  const todo = TodoResource.read(props.id);
  return <li>{todo.title}</li>;
}

function App() {
  return (
    // Same Suspense component you already use for code splitting
    // would be able to handle data fetching too.
    <React.Suspense fallback={<Spinner />}>
      <ul>
        {/* Siblings fetch in parallel */}
        <Todo id="1" />
        <Todo id="2" />
      </ul>
    </React.Suspense>
  );
}

// Other libraries like Apollo and Relay can also
// provide Suspense integrations with similar APIs.
复制代码
目前还没有官方的文档说明如何使用 Suspense 获取数据, 但是你可以在此演讲 和 这个小型 demo 中找到一些早期信息. 我们将在 React 16.9 发布左右编写 React Cache 的文档(以及如何编写自己的 Suspense 兼容库), 但是如果你很好奇, 你可以在 这里 找到它的非常早期的源码

There is no official documentation for how to fetch data with Suspense yet, but you can find some early information in this talk and this small demo. We’ll write documentation for React Cache (and how to write your own Suspense-compatible library) closer to the React 16.9 release, but if you’re curious, you can find its very early source code here.

其实在 React 16.6 中, 底层 Suspense 机制(暂停渲染并且显示 loading 组件)就预计稳定了. 我们已经在生产环境中使用它用来代码分割数月了. 但是, 用来数据获取的上层 API 还非常不稳定. React Cache 正在迅速变化, 并且至少会改变几次.有一些底层的 API 缺少高级 API 可用. 除非是早期试验, 否则我们不建议在任何地方使用 React Cache. 注意 React Cache 自身并不严格依赖于 React 版本, 而且当前的 alphas 版本缺少基础特性, 例如缓存失效. 你很快就会遇到障碍. 我们预计在 React 16.9 版本中有一些东西可用.

The low-level Suspense mechanism (suspending rendering and showing a fallback) is expected to be stable even in React 16.6. We’ve used it for code splitting in production for months. However, the higher-level APIs for data fetching are very unstable. React Cache is rapidly changing, and will change at least a few more times. There are some low-level APIs that are missing for a good higher-level API to be possible. We don’t recommend using React Cache anywhere except very early experiments. Note that React Cache itself isn’t strictly tied to React releases, but the current alphas lack basic features as cache invalidation, and you’ll run into a wall very soon. We expect to have something usable with the React 16.9 release.

最终我们希望通过 Suspense 来获取大多数数据, 但是这需要很长的事件, 直到所有的集成都准备就绪. 在实践中, 我们期望可以使用非常递进式的采用, 并且通常通过 Apollo 和 Relay 这样的中间层使用, 而不是直接使用. 缺少上层 API 并不是唯一的障碍 — 还有有些非常重要的 UI 模式我们还没有支持, 例如在加载器视图层次结构之外显示进度指示器. 与往常一样, 我们将在本博客的发布说明中传达我们的进展.

Eventually we’d like most data fetching to happen through Suspense but it will take a long time until all integrations are ready. In practice we expect it to be adopted very incrementally, and often through layers like Apollo or Relay rather than directly. Missing higher level APIs aren’t the only obstacle — there are also some important UI patterns we don’t support yet such as showing progress indicator outside of the loading view hierarchy. As always, we will communicate our progress in the release notes on this blog.

React DOM 和 React Native: 从技术的角度来看, 在 React 16.6 中一个兼容的 cache 就已经可以和 <React.Suspense> 工作了. 但是, 在 React 次级版本发布之前我们还没有拥有一个好的 cache 实现. 如果你是敢于冒险的, 你可以通过查看 React Cache alphas 来尝试写一个你自己的 cache. 但是, 请注意, 心智模型(译者注: 关于心智模型见here)是完全不同的, 在文档准备好之前误解的可能性非常高.
Status in React DOM and React Native: Technically, a compatible cache would already work with <React.Suspense> in React 16.6. However, we don’t expect to have a good cache implementation until this React minor release. If you’re feeling adventurous, you can try to write your own cache by looking at the React Cache alphas. However, note that the mental model is sufficiently different that there’s a high risk of misunderstanding it until the docs are ready.
React DOM Server: 目前 Suspense 在服务端渲染中还不可用. 正如我们前面提到的, 我们已经开始研究一个新的异步服务端渲染器,它将支持Suspense,但它是一个大型项目,需要2019年的大部分时间才能完成.

Status in React DOM Server: Suspense is not available in the server renderer yet. As we mentioned earlier, we’ve started work on a new asynchronous server renderer that will support Suspense, but it’s a large project and will take a good chunk of 2019 to complete.

建议: 为了使用数据获取的 Suspense, 请等待该 React 次级版本发布. 不要在 16.6 版本中尝试为了数据获取使用 Suspense 特性; 还不支持. 但是当 数据获取的 Suspense 成为官方支持的时候, 现存的为了代码分割的 <Suspense> 组件也将可以正常显示 loading 状态.

Recommendation: Wait for this minor React release in order to use Suspense for data fetching. Don’t try to use Suspense features in 16.6 for it; it’s not supported. However, your existing components for code splitting will be able to show loading states for data too when Suspense for Data Fetching becomes officially supported.

其他项目

Other Projects

让 React DOM 更加现代化

Modernizing React DOM

我们开始调查 ReactDOM 的 简化和现代化 , 目标是减小包的尺寸并且和浏览器的行为更紧密的对齐. 因为现在该项目还处于早期探索阶段, 现在说哪些要点将要 "成功" 还为时过早. 我们将在 这个issue(译者注: 上面的简化和现代化的 issue 链接) 上面传递我们的进展.

We started an investigation into simplifying and modernizing ReactDOM, with a goal of reduced bundle size and aligning closer with the browser behavior. It is still early to say which specific bullet points will “make it” because the project is in an exploratory phase. We will communicate our progress on that issue.

服务端渲染的 Suspense

Suspense for Server Rendering

我们开始设计一个新的服务端渲染器, 其支持 Suspense(包括在服务器上面等待异步渲染数据而不进行双重渲染), 并逐步加载和用 chunks 合成页面内容来获得最佳的用户体验.你可以在本次演讲 中观看其早期原型的概述. 这个新的服务端渲染器将成为我们2019年的主要焦点, 但是现在说关于它的发布计划还为时过早. 它的发展, 将一如既往的 发生在 github 上面 ,

We started designing a new server renderer that supports Suspense (including waiting for asynchronous data on the server without double rendering) and progressively loading and hydrating page content in chunks for best user experience. You can watch an overview of its early prototype in this talk. The new server renderer is going to be our major focus in 2019, but it’s too early to say anything about its release schedule. Its development, as always, will happen on GitHub.

仅此而已, 正如你所看到的, 这里有很多事情让我们忙碌, 但是我们期待在接下来的几个月取得更多进展.

And that’s about it! As you can see, there’s a lot here to keep us busy but we expect much progress in the coming months.

我们希望该文章能让你了解到我们正在开展的工作, 今天你可以使用什么, 以及在未来你可以使用什么. 虽然在社交平台上面有很多关于新特性的讨论, 但是如果你阅读了该篇文章, 你将不会错过任何重要的东西.

We hope this post gives you an idea of what we’re working on, what you can use today, and what you can expect to use in the future. While there’s a lot of discussion about new features on social media platforms, you won’t miss anything important if you read this blog.

我们始终乐于接受反馈, 并且希望在 RFC repository , issue tracker ,Twitter 上面听到你的声音

We’re always open to feedback, and love to hear from you in the RFC repository, the issue tracker, and on Twitter.

译者注:

译者并不精通英语, 但是深知英语对于 程序员 的重要性, 所以译者在翻译的时候保留了英语原文, 希望给你一个原滋原味的阅读体验并且能熟悉一些常见的英文.

希望有读者可以指出我的翻译错误, 感激不尽.

译文转载请注明出处


以上所述就是小编给大家介绍的《React 16.x 蓝图[双语版]》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

数据之巅

数据之巅

涂子沛 / 中信出版社 / 2014-5-1 / 65.00元

《数据之巅:大数据革命,历史、现实与未来》从美国建国之基讲起,通过阐述初数时代、内战时代、镀金时代、进步时代、抽样时代、大数据时代的特征,系统梳理了美国数据文化的形成,阐述了其数据治国之道,论述了中国数据文化的薄弱之处,展望了未来数据世界的远景。 “尊重事实,用数据说话”,“推崇知识和理性,用数据创新”,作者不仅意在传承黄仁宇“数目字”管理的薪火,还试图把数据这个科技符号在中国转变为文化符号......一起来看看 《数据之巅》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具