我正在轮询我的报告,在每个请求之间添加 5 秒的间隔。
const addDelay = timeout => new Promise(resolve => setTimeout(resolve, timeout))
export const myReport = () => async (dispatch) => {
dispatch({
type: constants.DOWNLOAD_REPORT_REQUEST
})
let url = `/admin/dashboard/report.js?project_id=${projectId}&tool_id=${toolId}`
try {
const subscribe = async (uri) => {
let response = await fetch(uri, {
method: 'GET',
headers: {
'content-type': 'application/json',
'x-api-token': `Bearer ${token}`
}
})
const resBody = await response.json()
if (resBody.status === 'success') {
window.location.href = resBody.url
dispatch({
type: constants.DOWNLOAD_REPORT_SUCCESS
})
} else {
await addDelay(5000)
await subscribe(url)
// return;
// setTimeout(() => {
// dispatch({
// type: constants.SHOW_DOWNLOAD_POPUP
// })
// return;
// }, 15000);
}
}
subscribe(url)
} catch (error) {
dispatch({
type: constants.DOWNLOAD_REPORT_FAILURE,
errorMessage: error.status
})
}
}
现在,我想在 15 秒后停止轮询并显示一个弹出窗口。
问题是我无法在此处添加 setTimeout,因为我正在使用async
. 此外,它不会subscribe
一次又一次地停止调用方法,因为它不断进入其他部分,return
不起作用。
我想退出其他部分,停止调用该函数并在 15 秒后显示弹出窗口。我如何实现这一目标?