markdown mobx caveat(action.bound)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown mobx caveat(action.bound)相关的知识,希望对你有一定的参考价值。

[ref](https://mobx.js.org/refguide/action.html) - bound actions  
use @action.bound for normal function shape
```js
 @action.bound
    increment() {
        this.tick++ // 'this' will always be correct
    }
```

or use below syntax (arrow function)
```js
  @action selectPogyowon = (pogyowon) => {
    this.selectedPogyowon = pogyowon
  }
```

以上是关于markdown mobx caveat(action.bound)的主要内容,如果未能解决你的问题,请参考以下文章

markdown CRACO用于使用Mobx装饰器

Flutter 状态管理- 使用 MobX

SMR磁盘学习3---caveat-scriptor

Distributed Result Grouping Caveats

React--》状态管理工具—Mobx的讲解与使用

mobx数据变了,视图没变,mobx6的用法