防止接口返回数据慢,点击其他按钮请求数据之后被返回慢的数据覆盖掉新数据
发布时间:2024年01月24日
const getData = async () => {
setLoading(true);
const currentRequest = Date.now();//加一个时间戳
latestRequestRef.current = currentRequest;//将刚才的时间戳保存到最后一次被点击的钩子函数里面
PerformanceApi.getHistoryPerformance({
assessFormId: assessFormId,
cycletype: cycleType < 0 ? '' : cycleType,
})
.then((res: any) => {
if (res.Code) {
//如果两个相等,说明就是本次的,最新点击的一次获取数据,否则jiu
if (latestRequestRef.current === currentRequest) {
setData(res.Data);
}
}
if (cycleType < 0) {
isPreventMultipleCalls.current = true;
setCycleType(res.Data.formTags[0].cycleType);
}
setLoading(false);
})
.catch((e) => console.log(e));
};
文章来源:https://blog.csdn.net/qq_56918166/article/details/135816972
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!