如何从 $.getjson 获取数据
我像这样编写 jquery
var machineId = [];
$.getJSON('ajax/getmachines.php', { plant: vPlant, floor: vBuilding + vFloor }, function(dataList) {
$.each(dataList, function(recordno, machine) {
machineId.push(machine['id']);
alert(machine['id']);
});
});
alert(machineId[0]);
$.each
中的第一个警报显示每条记录的正确数据,但为什么最后一个警报显示未定义?如何使用数组machineId
?谢谢。
I code jquery like this
var machineId = [];
$.getJSON('ajax/getmachines.php', { plant: vPlant, floor: vBuilding + vFloor }, function(dataList) {
$.each(dataList, function(recordno, machine) {
machineId.push(machine['id']);
alert(machine['id']);
});
});
alert(machineId[0]);
The first alert in the $.each
shows the right data every record but why the last alert show me undefined? How can I use array machineId
? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该请求是异步的,因此最后一个警报会在数组填满之前执行。尝试将“alert(machineId[0])”放在 $.each 操作之后。
The request is asynchronous so the last alert is executed before the array is filled. Try to place the "alert(machineId[0])" after the $.each operation.
getJSON
方法是异步的 - 当运行时引擎到达最后一个警报时,它尚未完成执行。在回调完成之前不能使用该数组。
只需在回调中执行您需要执行的操作即可,例如:
这将显示所有用逗号分隔的 ID。
The
getJSON
method is asynchronous - when the run time engine reach the last alert, it didn't finish to execute yet.You can't use the array before the callback has finished.
Just do whatever you need to do from within the callback, for example:
This will show all the ID's separated with comma.