Axios 取消令牌取消每个请求
Axios cancel token cancelling every request
我正在尝试实现 cancelToken API 以便每当我向服务器发出请求以在每次击键时获取结果时,只应处理最后一个请求,但是我已经实现了 axios 取消token API 并且它似乎取消了每个请求,我在这里做错了什么?每次击键都会调用此函数。
getProductLists2 = async () => {
let formData = new FormData()
const { start, limit } = this.state
formData.append('start', start)
formData.append('limit', limit)
formData.append('product_title', this.state.searchTitle)
formData.append('product_sku', this.state.searchSKU)
let cancel;
Axios({
method: 'POST',
url: BASE_URL + '/listProduct',
// headers: { 'Content-Type': 'multipart/form-data' },
data: formData,
cancelToken: new Axios.CancelToken(c => cancel = c)
})
.then(products => {
if (products && products.data.productList && products.data.productList.length > 0) {
this.setState({ productList: products.data.productList, totalProducts: products.data.productTotal })
}
})
.catch(err => toast.error('Something went wrong'))
console.log(cancel, 'h')
cancel && cancel()
}
您应该在 进行新的 axios 调用之前取消之前的 cancelToken 。当您发出第一个请求时,保存 cancelToken。然后当你发出第二个请求时,检查是否已经有一个 cancelToken 并取消它,然后进行你的第二个 axios 调用。
消除 getProductLists2 的抖动以限制调用率也是个好主意
我是这样做的:
// Cancel the previous axios token if any
if (this.cancel) this.cancel.cancel();
// Get a new token
this.cancel = axios.CancelToken.source();
axios
.get(myURL, { cancelToken: this.cancel.token })
.then((res) => {
console.log(res.data);
})
.catch((error) => { console.log(error); });
我正在尝试实现 cancelToken API 以便每当我向服务器发出请求以在每次击键时获取结果时,只应处理最后一个请求,但是我已经实现了 axios 取消token API 并且它似乎取消了每个请求,我在这里做错了什么?每次击键都会调用此函数。
getProductLists2 = async () => {
let formData = new FormData()
const { start, limit } = this.state
formData.append('start', start)
formData.append('limit', limit)
formData.append('product_title', this.state.searchTitle)
formData.append('product_sku', this.state.searchSKU)
let cancel;
Axios({
method: 'POST',
url: BASE_URL + '/listProduct',
// headers: { 'Content-Type': 'multipart/form-data' },
data: formData,
cancelToken: new Axios.CancelToken(c => cancel = c)
})
.then(products => {
if (products && products.data.productList && products.data.productList.length > 0) {
this.setState({ productList: products.data.productList, totalProducts: products.data.productTotal })
}
})
.catch(err => toast.error('Something went wrong'))
console.log(cancel, 'h')
cancel && cancel()
}
您应该在 进行新的 axios 调用之前取消之前的 cancelToken 。当您发出第一个请求时,保存 cancelToken。然后当你发出第二个请求时,检查是否已经有一个 cancelToken 并取消它,然后进行你的第二个 axios 调用。
消除 getProductLists2 的抖动以限制调用率也是个好主意
我是这样做的:
// Cancel the previous axios token if any
if (this.cancel) this.cancel.cancel();
// Get a new token
this.cancel = axios.CancelToken.source();
axios
.get(myURL, { cancelToken: this.cancel.token })
.then((res) => {
console.log(res.data);
})
.catch((error) => { console.log(error); });