我需要调用此类中定义的web方法
<%@ WebService Language="C#" Class="emt7anReyady.myService" %>
using System;
using System.Web;
using System.Web.Services;
using System.Web.Services.Protocols;
using System.Linq;
using System.Web.Security;
namespace emt7anReyady
{
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
[System.Web.Script.Services.ScriptService]
public class myService : System.Web.Services.WebService
{
[WebMethod]
[System.Web.Script.Services.ScriptMethod]
public void test()
{
Context.Response.Redirect("http://www.google.com");
}
}
}
我已经像这样做了一个Ajax调用
function getData() {
$.ajax({
type: "POST",
url: "myService.asmx/test",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function () {
alert("succesed")
},
failure: function () {
alert("faild")
}
});
}
呼叫失败的问题,在Chrome控制台中,我得到了这个!!
答案 0 :(得分:1)
由于使用了Response.Redirect
,您获得了ThreadAbort响应。
您要使用此代码尝试实现的目标尚不清楚 - 如果您想要代理其他一些网站,您需要阅读并转发响应...
答案 1 :(得分:0)
这是因为您在WebMethod中使用的Response.Redirect。如果您真的想要重定向到其他页面,请从成功块中进行。
.
.
success: function () {
window.open('http://www.google.com');
},
.
.
您也可以使用document.location而不是window.open