Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
QC-L authored Oct 13, 2022
1 parent 1c40f4c commit 52b91af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/blog/2014-05-06-flux.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Flux:一个用于 React 的应用架构"
author: [fisherwebdev, jingc]
---

我们最近在F8大会(Facebook于2014.4.30召开的开发者大会)的一个分组会议上交流了 Flux,一个与 React 配合的很好的数据流架构。在这里可查看视频:
我们最近在 F8 大会(Facebook 于 2014.4.30 召开的开发者大会)的一个分组会议上交流了 Flux,一个与 React 配合的很好的数据流架构。在这里可查看视频:

<figure><iframe width="650" height="315" src="//www.youtube-nocookie.com/embed/nYkdrAPrdcw?list=PLb0IAmt7-GS188xDYE-u1ShQmFFGbrk0v&start=621" frameborder="0" allowfullscreen></iframe></figure>

Expand All @@ -13,4 +13,4 @@ author: [fisherwebdev, jingc]

当用户在 React 视图中产生交互时,视图会发送一个 action(通常是一些带有字段属性的 JavaScript 对象)传至 dispatcher 中,dispatcher 会通知 store 保存应用数据和处理业务逻辑。当 store 修改完了 state 数据,它们会通知视图组件已经更新。这种模式与 React 的声明式配合的很好,它允许 store 发送数据更新而无需关注视图和数据之间是如何转换更新的。

Flux更像是一种模式,而不是一个常规的框架,所以你可以在不添加大量新代码的情况下立即使用 Flux。这里提供了一个[架构的示例](https://github.com/facebook/flux/tree/master/examples/flux-todomvc) ,同时还有[更详细的文档](https://facebook.github.io/flux/docs/overview.html)[教程](https://facebook.github.io/flux/docs/todo-list.html)可以在文档中查看更多的例子
Flux 更像是一种模式,而不是一个常规的框架,所以你可以在不添加大量新代码的情况下立即使用 Flux。这里提供了一个 [架构的示例](https://github.com/facebook/flux/tree/master/examples/flux-todomvc) ,同时还有 [更详细的文档](https://facebook.github.io/flux/docs/overview.html)[教程](https://facebook.github.io/flux/docs/todo-list.html)可以在文档中查看更多的示例

0 comments on commit 52b91af

Please sign in to comment.