0

我尝试将 json 发送到 aspx 站点并获取回调,但它不起作用。

当我尝试这个时:

查询:

$( "input[type=submit], a, button" )
    .button()
    .click(function( event ) {
        $.ajax({
            dataType : 'jsonp',
            jsonp : 'jsonp_callback',
            url : 'Entry.aspx/GetString',
            success : function(sqlArray) {
                alert(sqlArray);
            },
            error: Failed
        });

        function Failed(result) {  
              alert("Fail: "+result.status + " " + result.statusText);  
        }   
    });

ASP.NET:

    [WebMethod]
public static string GetString(string tracking_num)
{
    var customer = new data { text="Joe Bloggs"};
    string json = customer.toJson();
    return json;
}

我得到错误:

失败:200 OK

当我将 ajax 数据类型从“Json”更改为“Text”时,将调用成功函数,但 alertboxtext 是 aspx 站点的 Html-Code。

谢谢

4

1 回答 1

0

Set the content type in the GetString method.

Context.Response.ContentType = "application/json"

and use dataType:'json' in the ajax call.

于 2013-06-05T13:50:51.673 回答