这是我的jQuery代码
$.ajax({
method: "POST",
url: base_url + "/stats/add.json",
data: JSON.stringify(data_stat) ,
contentType: "application/json",
success: function(msg){
alert(msg.message);
}
});
alert("other");
仅在alert("other")
时发布数据。
答案 0 :(得分:0)
但是如果您想明确提醒您的消息,可以在.done()
中完成,而不会阻止主用户界面
$.ajax({
method: "POST",
url: base_url + "/stats/add.json",
data: JSON.stringify(data_stat) ,
contentType: "application/json",
success: function(msg){
//Blocks main UI because of the reason Rocy McCrossan told you
alert(msg.message);
},
}).done(function(msg) {
alert(msg.message);
});