0

我的问题是用来自 ajax 请求的数据填充数组。我的 ajax 调用可以很好地接收数据并记录在控制台中。我遇到的困难是用这些数据填充我的数组。这是我的代码。

        $.ajax({
        type: "GET",
        url: WebRoot + "ws/GIS.asmx/CensusData",
        data: d,
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (data) {
            //loop through the data and pull out the fips codes                
            //alert("success");
            fipsData = data;



            console.log(fipsData);
        } //ends success function
    });  //ends ajax call
4

1 回答 1

0

只需像这样使用 JSON.parse() :

fipsData = JSON.parse(data);

你应该很高兴。

于 2013-08-02T13:12:01.477 回答