1

我试图从 JavaScript 调用服务器端,然后将字符串数组传递回 JavaScript,但遇到了问题。

// Call the server-side to get the data.
$.ajax({"url" : "MyWebpage.aspx/GetData",
        "type" : "post",
        "data" : {"IdData" : IdData},
        "dataType" : "json",
        "success": function (data)
        {
            // Get the data.
            var responseArray = JSON.parse(data.response);

            // Extract the header and body components.
            var strHeader = responseArray[0];
            var strBody = responseArray[1];

            // Set the data on the form.
            document.getElementById("divHeader").innerHTML = strHeader;
            document.getElementById("divBody").innerHTML = strBody;
        }
});

在 ASP.Net 服务器端,我有:

[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
public static object GetTip(String IdTip)
{
    int iIdTip = -1;
    String[] MyData = new String[2];


    // Formulate the respnse.
    MyData[0] = "My header";
    MyData[1] = "My body";

    // Create a JSON object to create the response in the format needed.
    JavaScriptSerializer oJss = new JavaScriptSerializer();

    // Create the JSON response.
    String strResponse = oJss.Serialize(MyData);

    return strResponse;
}

我可能把事情搞混了,因为我还是 JSON 的新手。

更新错误代码:

Exception was thrown at line 2, column 10807 in     http://localhost:49928/Scripts/js/jquery-1.7.2.min.js

0x800a03f6 - JavaScript 运行时错误:无效字符

堆栈跟踪:解析 JSON[jquery-1.7.2.min.js] 第 2 行

我的问题是什么?

4

2 回答 2

1

这纯粹是出于猜测。但是看看这是否是你得到的: - 在你的Ajax调用中,你的数据类型是 json 并查看你返回 json 字符串的方法。所以你不需要做 JSON.parse(data.response)。相反,只需看看以下内容是否适合您。我也没有在你的 Json 中看到一个response对象,而它只是一个数组。所以它必须试图解析undefined

 var strHeader = data[0];
 var strBody = data[1];
于 2013-04-18T00:07:31.827 回答
1

我将您的 ajax 调用脚本修改为:

// Call the server-side to get the data.
$.ajax({
    url: "WebForm4.aspx/GetTip",
    type: "post",
    data: JSON.stringify({ IdTip: "0" }),
    dataType: "json",
    contentType: 'application/json',
    success: function (data) {
        // Get the data.
        var responseArray = JSON.parse(data.d);

        // Extract the header and body components.
        var strHeader = responseArray[0];
        var strBody = responseArray[1];

        // Set the data on the form.
        document.getElementById("divHeader").innerHTML = strHeader;
        document.getElementById("divBody").innerHTML = strBody;
    }
});

请注意,我添加contentType: 'application/json'并更改了

var responseArray = JSON.parse(data.response);

var responseArray = JSON.parse(data.d);
于 2013-04-18T00:52:43.653 回答