Review of Reducers and Pure Functions Review of Reducers and Pure Functions One of the core concepts of Redux is the reducer. A reducer is a function withthe signature (accumul...
NavModel interface main property node property NavModel interface Interface used to describe different kinds of page titles and page navigation. Navmodels are usually generate...
Decorators Article: Related: Decorators Decorators (supported by Babel, in Stage 2 proposal as of 03/17) If you’re using something like mobx, you can decorate your class com...
Component Component Component is the encapsulation of view presentation and logic functions.For the moment, from the perspective of Redux, we divide the component into state-ma...
Data Flow Data Flow Data Flow只是一种应用架构的方式,比如数据如何存放,如何更改数据,如何通知数据更改等等,所以它不是 React提供的额外的什么新功能,可以看成是使用 React构建大型应用的一种最佳实践。 正因为它是这样一种概念,所以涌现了许多实现 ,这里主要关注两种实现: 官方的 Flux 更优雅的 Redu...