这是一个具有约束力的问题。最简单的解决方案是更改按钮标记的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-appshoudl 构建的),则可以使用此表示法自动绑定使用该
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使用效果不佳。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)