gpt4 book ai didi

javascript - jquery中如何进行轮询?

转载 作者:行者123 更新时间:2023-11-28 18:32:11 25 4
gpt4 key购买 nike

我有一个邮政电话。结果之后我想做另一个 get CALL 来检查状态。但状态为“已完成”。

jQuery.ajax({
type: "POST",
contentType: "application/json",
url: "/doPostURL....,
headers: {
"x-csrf-token": sCsrftoken
},
success: function() {
.. now I want to do the polling on the status
jQuery.ajax({
type: "GET",
dataType: "json",
url: "/getStatusUrl ,
success: function(data, textStatus, response) {
// to continue only if status if Finished
},
error: function() {
}
});
}
});

最佳答案

$.ajax 返回一个延迟对象。

您可以执行如下操作。更多信息here

var doSomething = $.ajax({
url: '/path/to/file',
type: 'default GET (Other values: POST)',
dataType: 'default: Intelligent Guess (Other values: xml, json, script, or html)',
data: {param1: 'value1'},
})
function doneCallback(){
// Handle exit condition here.
doSomething();
}
function failCallback(){
// Handle failure scenario here.
}
doSomething.then(doneCallback, failCallback)

关于javascript - jquery中如何进行轮询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37783419/

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