我写过如下的网络服务:
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json, XmlSerializeString = false, UseHttpGet = true)]
public string GetNews(int tes)
{
return tes.ToString();
}
我想在客户端使用这个功能,所以我写了这句话:
$.ajax({
dataType: "jsonp",
success: function (d) {
$('.widget.yellow').html(d.d);
},
error: function (xhr, textStatus, errorThrown) {
$('.widget.yellow').html(textStatus);
},
data: { tes: '170' },
url: "http://localhost:1122/Services/MyService.asmx/GetNews?format=json"
});
但是我收到错误.textStatus是“parsererror”,xhr.statusText是“success”,xhr.status是“200”,xhr.readyState是“4”。 我需要一些帮助。