我一直在試圖讓一個循環推()方法來建立一個結構如下:推數組的Javascript(jQuery的)陣列
var locations2 = [
['User', position.coords.latitude, position.coords.longitude, 1],
['Bondi Beach', -33.890542, 151.274856, 2],
['Coogee Beach', -33.923036, 151.259052, 3],
['Cronulla Beach', -34.028249, 151.157507, 4],
['Manly Beach', -33.80010128657071, 151.28747820854187, 5],
['Maroubra Beach', -33.950198, 151.259302, 6]
];
這是我的代碼:
var locations = [];
$.ajax({
type: "POST",
url: "/ajax/map.php",
data: "name=test",
dataType: "json",
cache: false,
success: function(data){
$.each(data.points, function(i,item){
array_push = ["test", parseFloat(item.origem_lat), parseFloat(item.origem_lng), i];
locations.push(array_push);
});
}
});
但是,位置的Javascript console.log顯示一個空數組。
我試圖以許多不同的方式使用push(),但我無法獲得與locations2相同的結構。這裏最大的問題是我不知道有多少數組將在循環前位於數組中,所以我無法事先初始化它。
有什麼想法?
你的語法看起來不錯 - 你確定'data.points'包含你期望的數組嗎? – McGarnagle
將錯誤回調添加到您的ajax調用中。它可能會引發錯誤,但您可能不知道此代碼。 –
您可以使用警報(JSON.stringify(x))快速轉儲數組內容,其中x是有問題的數組。 – RonaldBarzell