我试图通过方法GET的方式使用Web服务,但是我无法获得成功函数,当程序进入错误函数时,警报显示“0”,我不知道知道原因。
这是我使用AJAX的代码
function funcAddPines() {
$.ajax({
type: "GET",
contentType: "application/json; charset=utf-8",
url: "url.asmx/HelloWorld",
dataType: "json",
data: JSON.stringify({}),
success: function (objRes) {
alert("Entró a web-service");
},
error: function (e) {
alert(e.status);
}
});
}