我已经在我的网站上实现了一个Ajax请求,我正在从一个网页调用端点。它总是返回200个OK,但jQuery会执行错误事件。 我尝试了很多方法,但还是没能解决这个问题。我添加我的代码如下:

jQuery代码

var row = "1";
var json = "{'TwitterId':'" + row + "'}";
$.ajax({
    type: 'POST',
    url: 'Jqueryoperation.aspx?Operation=DeleteRow',
    contentType: 'application/json; charset=utf-8',
    data: json,
    dataType: 'json',
    cache: false,
    success: AjaxSucceeded,
    error: AjaxFailed
});
function AjaxSucceeded(result) {
    alert("hello");
    alert(result.d);
}
function AjaxFailed(result) {
    alert("hello1");
    alert(result.status + ' ' + result.statusText);
}

jquery .aspx的c#代码

protected void Page_Load(object sender, EventArgs e) {
    test();
}
private void test() {
    Response.Write("<script language='javascript'>alert('Record Deleted');</script>");
}

我需要(“记录删除”)成功删除后的字符串。我可以删除内容,但我没有收到这条消息。这是正确的还是我做错了什么?解决这个问题的正确方法是什么?


当前回答

我估计你的aspx页面不会返回JSON对象。 您的页面应该执行如下操作(page_load)

var jSon = new JavaScriptSerializer();
var OutPut = jSon.Serialize(<your object>);

Response.Write(OutPut);

同时,试着改变你的AjaxFailed:

function AjaxFailed (XMLHttpRequest, textStatus) {

}

textStatus应该告诉你你得到的错误类型。

其他回答

另一件让我搞砸的事情是使用localhost而不是127.0.0.1,反之亦然。显然,JavaScript不能处理从一个到另一个的请求。

如果你总是从服务器返回JSON(没有空响应),dataType: ' JSON '应该工作,contentType是不需要的。但是,请确保JSON输出…

有效的(JSONLint) 串行化(JSONMinify)

jQuery AJAX将在有效但未序列化的JSON上抛出“parseerror”!

看到这个。这也是一个类似的问题。我努力工作。

不要删除dataType: 'JSON',

注意:您的响应数据应该是json格式

这只是为了记录,因为我在寻找类似于OP的问题的解决方案时偶然看到了这篇文章。

在我的情况下,我的jQuery Ajax请求被阻止成功,由于同源策略在Chrome。当我修改我的服务器(Node.js)时,所有问题都解决了:

response.writeHead(200,
          {
            "Content-Type": "application/json",
            "Access-Control-Allow-Origin": "http://localhost:8080"
        });

这花了我一个小时的时间埋头苦干。我觉得自己很蠢……

您的脚本要求以JSON数据类型返回。

试试这个:

private string test() {
  JavaScriptSerializer js = new JavaScriptSerializer();
 return js.Serialize("hello world");
}