2013-08-02 254 views
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 
+0

想要發佈'console.log(fipsData);' – tymeJV

+0

的結果你能顯示日誌的結果嗎?或獲取您的JSON的網址? –

+0

console.log(fipsData)爲空[],但console.log(數據)返回到我的fips代碼和我的金額的數據列 –

回答

0

只需使用JSON.parse()來是這樣的:

fipsData = JSON.parse(data); 

,你應該是好去。