如何在React Native中使用Mobx解决此错误?

时间:2019-03-14 04:11:53

标签: reactjs react-native expo mobx

我正在尝试使用Mobx在React Native App中组织所有状态,但是在下面的我的商店中出现了诸如“无法读取null的属性“绑定””之类的错误。

this.state.showHeadline

请你帮我一下。

要在下面添加我的package.json。

import { observable } from 'mobx';

class RestaurantStore {
 @observable
 name = 'コンビニ屋';

 @observable
 tag = 'ショッピング';

 @observable
 shortDescription = '$10以上のお買い上げでスタンプ1個';
}

export default RestaurantStore;

1 个答案:

答案 0 :(得分:0)

尝试这种格式

import { observable, action, computed, toJS , decorate} from "mobx";

class RestaurantStore{
  name = 'コンビニ屋';
  tag = 'ショッピング';
  shortDescription = '$10以上のお買い上げでスタンプ1個';
}

export default decorate(RestaurantStore, {
  name: observable,
  tag: observable,
  shortDescription: observable
});