嗨,我有 json 数组,我想每 5 秒显示下一个值
此代码从服务器获取 json 并将 json 数组发送到函数:
function myFunction() {
$.ajax({
type: "POST",
url: "ws.aspx/GetQueue",
data: "{'eventid':'" + eventID + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
if (msg != null) {
var obj;
if (msg.hasOwnProperty("d"))
obj = jQuery.parseJSON(msg.d);
else
obj = jQuery.parseJSON(msg);
setHtml(obj);
}
setTimeout(function () { myFunction(); }, 5000);
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.responseText);
setTimeout(function () { myFunction(); }, 5000);
}
});
}
这是我将数组发送给它后的函数:
function setHtml(obj) {
for (var i = 0; i < obj.length; i++)
setTimeout(function () { $('.Summary').html("<H1>" + obj[i].QueueName + "->" + obj[i].name + ' : ' + obj[i].Queue + "</H1><br/>"); }, 5000);
}
但是循环内的值是未定义的,这是为什么呢?这个问题的解决方案是什么?