redux学习 - 链接地址

Redux的特点

  1. 统一的状态管理,一个应用中只有一个仓库(store)
  2. 仓库中管理了一个状态树(statetree)
  3. 仓库不能直接修改,修改只能通过派发器(dispatch)派发一个动作(action)
  4. 更新state的逻辑封装到reducer中

参考链接:
https://www.jianshu.com/p/786e7174b0c2
https://www.redux.org.cn/docs/basics/ExampleTodoList.html

发布了18 篇原创文章 · 获赞 0 · 访问量 371

猜你喜欢

转载自blog.csdn.net/sinat_41904410/article/details/102961499
今日推荐