JS¶
$.ajax({
type: "post", //请求方式
url: "getResearchProgress", //发送请求地址
timeout: 30000,//超时时间:30秒
contentType: 'application/json',
dataType: "json",
data: JSON.stringify({"url": url}),
//请求成功后的回调函数 data为json格式
success:function(data){
if (data.error) {
window.clearInterval(timerId);
alert(data.error);
return;
}
},
//请求出错的处理
error: function(){
alert("请求出错");
}
});