mbox+react

下载 MobX

npm install mobx mobx-react

mbox工作流程

MobX的基本使用

 1. 创建store 对象 存储默认状态0

2. 将store对象放在一个全局的 组件可以够的到的地方

3. 让组件获取store对象中的状态 并将状态显示在组件中

更正普通函数的this指向

  @action.bound increment () {
    this.count = this.count + 1;
  }
  @action.bound decrement () {
    this.count = this.count - 1;
  }

在异步函数中更新数据

1. runInAction方法

  @action.bound async getData () {
    let { data } = await axios.get('https://api.github.com/users');
    runInAction(() => this.users = data);
  }

2. flow方法

 getData = flow(function* () {
    let { data } = yield axios.get('https://api.github.com/users');
    this.users = data
  }).bind(this)

 

MobX数据监测

1. computed 计算值

  • 计算值是可以根据现有的状态或其它计算值衍生出的值

  • 将复杂的业务逻辑从模板中进行抽离

  • 计算值示例

 

2. autorun 方法

当监测的状态发生变化时,你想根据状态产生 "效果",请使用 autorun。

autorun 会在初始化的时候执行一次,会在每次状态发生变化时执行。

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值