このような短いポーリングを実装したい場合:
function firstCall(){
$.ajax({
...
success: function(response){
if (response.OK == "OK"){
secondCall();
}else{
firstCall();
}
}
});
}
これで十分でしょうか?または、本当にfirstCall()
in else句をsetTimeout
?Thanksで囲む必要がありますか?