Redux BeginerRedux知识点复习补充On this pageRedux知识点复习补充redux的设计使用原则store是唯一的只有store可以改变自己的内容reducer必须是纯函数.纯函数:给定固定的输入,就一定有固定的输出,而且任何时候都不会有副作用。核心apicreateStore(reducer)store.dispatch(action:{type:string,data:any})store.getState()store.subscribe(func)