我的网络服务中有这个;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.Web.Script.Services.ScriptService]
public class Service1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello Worlds";
}
}
这是我的jQuery;
$(document).ready(function () {
$.support.cors = true;
$.ajax({
type: "POST",
url: "http://localhost:61614/Service1.asmx/HelloWorld",
data: "{}",
dataType: "json",
success: function (msg) {
alert(0);
alert(msg);
}, error: function (a,b,c) { alert(c); }
});
});
当我运行时,我在 Web 服务中的断点触发并返回“Hello Worlds”。
但是,在返回 jQuery 时,我会进入错误函数。Safari 只会提示一个空字符串,而 IE 会提示“无传输”。
谁能看到我做错了什么?