React@16.x(55)Redux@4.x(4)- store

avatar
作者
筋斗云
阅读量:1

目录

1,介绍

之前的文章中,已经逐步介绍了使用的情况,这里再做下补充,常用的3个属性:

  • dispatch 方法,用于分发 action
  • getState 方法,用于得到最新的 state
  • subscribe 方法,用于在 state 发生变化时执行。

subscribe 使用举例:

import { createStore } from "redux"; import reducer from "./reducer";  const store = createStore(reducer); // 每次 store.dispatch() 执行时,下面的回调函数就会执行。 const unListen = store.subscribe(() => {     console.log(store.getState()); });  // 终止监听。 unListen() 

其他相关:

1,核心概念

2,action 介绍

3,reducer 介绍


以上。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!