封闭中的访问道具



componentWillMount()中调用this.props.navigation.dispatch(resetAction);对我来说很好,但是如果我尝试此代码

componentWillMount(){
    Keychain
    .getGenericPassword()
    .then(function(credentials) {
         this.props.navigation.dispatch(resetAction);
    })
}

我遇到了一个错误,告诉我this.props.Navigation不确定。我想问题是我在里面称呼它。您知道如何解决此问题吗?

您只需更改此

的范围

尝试这个

componentWillMount(){
Keychain
  .getGenericPassword()
  .then((credentials)=>{
this.props.navigation.dispatch(resetAction);
});

否则请使用额外的val

var _self = this;

相关内容

  • 没有找到相关文章

最新更新