gpt4 book ai didi

javascript - 发送 ajax 请求而不等待回答

转载 作者:行者123 更新时间:2023-11-30 06:52:16 25 4
gpt4 key购买 nike

我想发出一个 ajax 请求来发送一些信息,并在发送后立即(如果我收到错误/成功无关紧要)进行重定向(无需等待服务器响应)

我想知道我是否会做类似的事情

$.ajax({
url:_myurl_,
timeout:500,
success:function(){document.location= _redirectUrl_},
error: function(){document.location= _redirectUrl_}
})

会好吗?添加超时不会取消我的请求吗?

最佳答案

在我的例子中,我需要在每次数量变化时更新购物车,以实时保存数据库中的商品库存(用于在线商店)。因此,我只需添加一个100 毫秒的超时删除成功/错误回调

$.ajax({
url: '/update-cart',
method: 'POST',
data: {
data: jQuery('#orderfrm').serializeArray()
},
timeout: 100
});

Note : It doesn't matter if some requests didn't work, because when the order is saved, an update of the whole cart is sent with a callback.If your query needs acknowledge, don't use that solution !

关于javascript - 发送 ajax 请求而不等待回答,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35776803/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com