我将调用一个进行同步 REST API 调用的函数。如果它在一段时间内没有返回,我想以某种方式超时该函数调用。我怎么做?
callBlahService = function(args){
// make actual rest api call
$.ajax{
// arguments
async: false
}
}
callBlahService({
success:function(data){
console.log("blah successful");
},
error: function(data){
console.log("blah failed");
}
});