gpt4 book ai didi

javascript - 无法调用 props 子函数

转载 作者:行者123 更新时间:2023-12-03 00:38:03 24 4
gpt4 key购买 nike

我想在按下按钮时调用父组件中的函数子组件,

class Home extends Component {
constructor(props) {
super(props);
this.Quiz = this.getQuizpopup.bind(this); //Function I want to call

this.state = {
latitude: LATITUDE,
}

};
}

在子组件中,我使用如下方式调用函数

<View>
<Button onPress={this.props.Quiz()} buttonStyle={styles.buttonStyle} title="MpTest" />
</View>

我收到的错误是 enter image description here

最佳答案

您需要传递 props 才能在子组件中使用该函数。

class Parent extends Component{
quiz = () => {
//function you want to call
}
render(){
return(
<Child quiz={this.quiz}> //passing quiz function as prop to child component
)
}}

关于javascript - 无法调用 props 子函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53572560/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com