我目前正在学习 React Native。
我只是构建了一个非常简单的应用程序来测试按钮组件。
当我单击按钮组件时,控制台日志将按预期打印。但是打印出控制台日志后,它会弹出以下错误。
**undefined is not an object (evaluating '_this2.btnPress().bind')**
我不确定出了什么问题?
谁能让我知道我做错了什么?
import React from 'react';
import { StyleSheet, Text, View, Button } from 'react-native';
export default class App extends React.Component {
btnPress() {
console.log("Fn Button pressed");
}
render() {
return (
<View style={styles.container}>
<Button title="this is a test"
onPress={()=> this.btnPress().bind(this)} />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});
您正在调用该函数,而不是通过bind
传递引用。
松开()
.
并且您不应该用箭头函数包装它,因为绑定已经返回了一个新的函数实例
onPress={this.btnPress.bind(this)} />
顺便说一下,这将在每个渲染上返回并创建一个函数实例,您应该在constructor
中执行此操作一次(仅运行一次(:
export default class App extends React.Component {
constructor(props){
super(props);
this.btnPress = this.btnPress.bind(this);
}
btnPress() {
console.log("Fn Button pressed");
}
render() {
return (
<View style={styles.container}>
<Button title="this is a test"
onPress={this.btnPress} />
</View>
);
}
}
或者使用箭头函数,该函数使用词法上下文进行this
:
export default class App extends React.Component {
btnPress = () => {
console.log("Fn Button pressed");
}
render() {
return (
<View style={styles.container}>
<Button title="this is a test"
onPress={this.btnPress} />
</View>
);
}
}