这是我的 Ajax 调用:
$.ajax({
type: "POST",
url: "ProductDetail.aspx/AddCart",
data: '{productId:' + 4 + ',productTypeId:' + 0 + ',quantity:' + 1 + '}',
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
alert('successful');
refreshCart();
},
complete: function () {
alert('Completed');
refreshCart();
}
});
它给出警报('已完成'),然后转到 webmethod 函数,但在我的服务器端代码完成后我需要它。你有什么建议吗?