调用 webservice 方法时出现以下错误。
Origin http://localhost:4165 is not allowed by Access-Control-Allow-Origin.
当引用网络时,我得到了像添加这样的解决方案,Access-Control-Allow-Origin
我不知道在哪里添加这个。我的脚本是:
$(document).ready(function () {
$.ajax({
type: "Post", dataType: "json", contentType: "application/json; charset=utf-8",
url: "http://localhost:63384/ListWebService.asmx/HelloWorld", success: function (data) { alert(data.d); }, error: function (request, status, error) {
alert(request.responseText);
}
});
});
我的网络服务方法是:
[WebMethod]
public string HelloWorld()
{
return "Hello User";
}