gpt4 book ai didi

javascript - 在 .then 中访问 props (React/redux)

转载 作者:行者123 更新时间:2023-12-03 09:45:16 25 4
gpt4 key购买 nike

我的项目正在使用 react、redux 和 redux-thunk。

我想等待我的函数结束,然后再启动一个清除我的页面的函数。不幸的是,我在 .then 中访问我的函数时遇到问题

这是我之前没有 promise 的代码然后:

this.props.dispatch(ScheduleAction(..))
this.props.deleteTab()

问题是有时会在将信息发送到我的服务器之前调用 deleteTab(),所以不是很好。

然后我做了:

Promise.resolve(this.props.dispatch(ScheduleAction(..)))
.then(function(response) {
this.props.deleteTab();
console.log("TabDeleted !!!");
return response
})

现在的问题是我无法访问this.props.deleteTab();

我有这个错误:

Uncaught (in promise) TypeError: Cannot read property 'props' of undefined

如果有人知道如何通过访问 .then 中的 Prop 来解决这个问题,请提前致谢!!

最佳答案

试试这个。那时您无权访问此内容。如果您使用如下箭头方法,您应该能够访问它。

Promise.resolve(this.props.dispatch(ScheduleAction(..)))
.then((response)=> {
this.props.deleteTab();
console.log("TabDeleted !!!");
return response
})

关于javascript - 在 .then 中访问 props (React/redux),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49918727/

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