1
このコードはGETリクエストをキャンセルしますが、POSTコールを中止できません。
私はGETリクエストを最初に送信し、abortAll
メソッドで取り消してもらえません。それだけで、このトークン自体がキャンセルされ、次のリクエストでは機能しません。 私は何が欠けていますか? おかげで、ジョン・Cant cancel AxiosはCancelTokenを介してリクエストを送信します
import axios from 'axios'
class RequestHandler {
constructor(){
this.cancelToken = axios.CancelToken;
this.source = this.cancelToken.source();
}
get(url,callback){
axios.get(url,{
cancelToken:this.source.token,
}).then(function(response){
callback(response.data);
}).catch(function(err){
console.log(err);
})
}
post(url,callbackOnSuccess,callbackOnFail){
axios.post(url,{
cancelToken:this.source.token,
}).then(function(response){
callbackOnSuccess(response.data);
}).catch(function(err){
callbackOnFail()
})
}
abortAll(){
this.source.cancel();
// regenerate cancelToken
this.source = this.cancelToken.source();
}
}