gpt4 book ai didi

javascript - React - prop 函数中的 prop 函数

转载 作者:行者123 更新时间:2023-11-30 11:37:28 26 4
gpt4 key购买 nike

我正在尝试为我的一个组件在另一个 prop 中执行一个 prop。基本上我必须等待一些数据从 API 返回然后我想执行下一个 Prop 。这是我的组件 2 Prop 代码:

getReportId = () => {

// here I make a call to the API to get a unique report ID
// then I set the state of my component to the ID's value and try call the next function

this.setState({
reportID: reportID
});

//here is where im trying to move onto the next part but its not firing
this.getReportData;

}

getReportData = () => {
// here would be part 2 where I would get the data based off the report ID but its not firing..
}

不确定这是否是 React 中的正确开始方式?如果是这样,那么不确定为什么 Prop 没有开火......

最佳答案

你的函数没有触发的原因是你没有调用它。

使用this.getReportData();

虽然我不确定您是否走在正确的轨道上,但我必须查看整个组件。

关于javascript - React - prop 函数中的 prop 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43846633/

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