在本机的onPress事件期间this.state是未定义的

在本机的onPress事件期间this.state是未定义的,第1张

在本机的onPress事件期间this.state是未定义的

这是一个具有约束力的问题。最简单的解决方案是更改按钮标记的JSX,如下所示:

<Button text={'Sign in'} onPress={this.onPress.bind(this)} />

ES6类会丢失您可能已经习惯使用es5 react.createClass的自动绑定。使用ES6作为React组件时,您必须更加注意绑定。

另一个选择是将方法绑定到构造函数中,如下所示:

  constructor(props) {    super(props);    this.state = {      email: '',      password: ''    };    this.onPress = this.onPress.bind(this)  }

或者甚至可以使用粗箭头es6语法函数来维护与正在创建的组件的“ this”绑定:

<Button text={'Sign in'} onPress={() => this.onPress()} />

更新:

要再次更新此内容,如果您的环境支持某些ES7功能(我相信react-native是从shoudl

react-native init
create-react-native-app
shoudl 构建的),则可以使用此表示法自动绑定使用该
this
关键字的类方法。

// This is auto-bound so `this` is what you'd expectonPress = () => {    console.log(this.state.email);};

代替

// This is not auto-bound so `this.state` will be `undefined`onPress(){  console.log(this.state.email);}

最好的选择是使用ES7功能(如果可用)或绑定到构造函数中。由于性能原因,使用匿名函数

onPress={() => this.onPress()}

onPress={this.onPress.bind(this)}
直接在您的匿名函数上
Button
使用效果不佳。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5088708.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存