我的问题是用来自 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