gpt4 book ai didi

javascript - 在 react 中调用作为 Prop 传递的方法

转载 作者:行者123 更新时间:2023-12-01 15:41:56 25 4
gpt4 key购买 nike

我的父元素中有方法,我将它作为 Prop 传递;像这样:

<NavBar retrieveList={this.retrieveList}/>
在我的子组件中,我无法从另一个方法体调用此方法。
handleCloseModal () {
window.$('#newHireModal').modal('hide'); /* this is working */
console.log(this.props.retrieveList); /* it gives method body, just to be sure props is coming here */
this.props.retrieveList; /*it gives "Expected an assignment or function call..." */
this.props.retrieveList(); /*it gives "this.props.retrieveList is not a function" */
return this.props.retrieveList; /*it does nothing. no working, no error. */
}
顺便说一句,我有构造函数和绑定(bind);
constructor(props) {
super(props);
this.handleCloseModal = this.handleCloseModal.bind(this);
retrieveList() {
StaffDataService.getAll()
.then(response => {
this.setState({
staffWithBasics: response.data,
filteredItems: response.data,
});
})
.catch(e => {
console.log(e);
});
}
这段代码有什么问题,我该如何运行这个父方法?

最佳答案

发生这种情况是因为 this在接收委托(delegate)的组件中与 this 不同函数中使用。传递时您必须绑定(bind)它。

<NavBar retrieveList={this.retrieveList.bind(this)}/>
然后你可以在你的函数体中调用它,如下所示。
this.props.retrieveList();

关于javascript - 在 react 中调用作为 Prop 传递的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63302124/

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