如何處理和承諾進度?Redux和承諾進度
我想在promise執行時顯示一些旋轉杆或其他東西,我使用axios來處理請求,但他們有一個API來處理在請求的配置對象中這樣的進程:
{
progress: function(progressEvent) {
// Do whatever you want with the native progress event
}
}
但我只能發送一個終極版動作要求,如:
return {
type: "HTTP_REQUEST",
payload: axios.get("/webAPI/data", configObj)
}
我如何處理與這些條件的進展情況?