Skip to content

状态管理

react 状态管理选型

待看

recoil

功能总结

  • 数据结构是有向图

  • 组件状态分享,响应式更新(atom)

  • 需要手动唯一key

  • 监听其他atom、selector更新后自动更新的selector 函数,类似vue的computed

    • 可写:set、get
    • 不可写:get
  • 异步数据处理--待实验

Released under the MIT License.