首页 > 解决方案 > MobX React Native 抛出无法读取未定义的属性

问题描述

我正在尝试将一个 mobX 商店传递到另一家商店,以下是我的商店代码:

存储类 1:

export default class APIKeyStore
{
    @persist @observable apiKey = '****';
}

存储类 2:

export default class ServiceCalls
{
    @persist @observable apiKeysStore;

    constructor(apiStore)
    {
        this.apiKeysStore = apiStore; 
        console.log('constructor', this.apiKeysStore.apiKey);
    }

    @action async initializeApp()
    {
        console.log('initializeApp', this.apiKeyStore.apiKey);
    }
}

index.js:

import APIKeyStore from './models/APIKeyStore';
import ServiceCalls from './models/ServiceCalls';

const serviceCalls = new ServiceCalls(new APIKeyStore())

const stores = {
  serviceCalls: serviceCalls
}

export default
{
  ...stores
};

我在其中调用 store 2 的 initializeApp() 方法的组件文件:

@inject('serviceCalls')
@observer
class ZeroStepScreen extends Component
{
  async componentWillMount()
  {
    try
    {
      console.log('componentWillMount', this.props.serviceCalls.apiKeysStore.apiKey);
      await this.props.serviceCalls.initializeApp();
    }
    catch(e)
    {
      console.log(e);
    }
  }
}

在上面的类中,我有三个console.log(..)声明——它报告来自第二个商店的正确结果constructor,以及组件的componentWillMount()方法。

调用相同的第二个商店类的initializeApp()方法时,this.apiKeysStore.apiKey总是抛出我无法读取未定义的属性。

第二类的构造函数 - console.log(this.apiKeysStore.apiKey)- OK

ZeroStepScreen - console.log(this.props.serviceCalls.apiKeysStore.apiKey)- 好的

第二类'initializeApp() - console.log(this.apiKeysStore.apiKey)- 错误

我无法理解我做错了什么,当第二个商店类this.apiKeysStore.apiKey在其构造函数报告正确时访问时未定义,组件类报告正确。

标签: react-nativemobxmobx-reactmobx-persist

解决方案


我不太确定基本原理(做这些事情的方式),但最终的方式对我有用:

@action async initializeApp()
{
   console.log(this.getAPIKeyStore()).apiKey);
}

getAPIKeyStore()
{
  return this.apiKeysStore;
}

可能使用async我无法直接访问类级别的观察者。


推荐阅读