好的,我想处理来自jQuery请求的JSON响应中返回的另一个javascript请求foreach值,这是我用于此请求的当前代码
function waitForEvents(){
$.ajax({
type: "GET",
url: "/functions/ajax.php?func=feed&old_msg_id="+old_msg_id,
async: true, /* If set to non-async, browser shows page as "Loading.."*/
cache: false,
timeout:50000, /* Timeout in ms */
success: function(data){
var json = jQuery.parseJSON(data);
**//Foreach json repsonse['msg_id'] call another function**
setTimeout('waitForEvents()',"1000");
},
error: function (XMLHttpRequest, textStatus, errorThrown){
alert("Error:" + textStatus + " (" + errorThrown + ")");
setTimeout('waitForEvents()',"15000");
},
});
};
对于每个json响应变量['msg_id']我想调用另一个javascript函数但不知道如何使用javascript中的foreach处理数组,任何想法如何?
答案 0 :(得分:2)
由于您已经在使用jQuery,因此可以使用$ .each函数:
http://api.jquery.com/jQuery.each/
$.each(json.msg_id, function (index, value) {
// Do something with value here, e.g.
alert('Value ' + index + ' is ' value);
})
答案 1 :(得分:0)
使用简单的for循环,可能比每个
更快function myfunction(id){
alert("myid:"+id):
}
var i=0;
for (i=0; i< json.length;i++){
var thisId = json[i].msg_id;
myfunction(thisId);
}
简单:
function myfunction(id){
alert("myid:"+id):
}
var i=0;
for (i=0; i< json.length;i++){
myfunction(json[i].msg_id);
}
因为你问:
function checkArrayElements(element, index, array) {
console.log("a[" + index + "] = " + element);
var myId = element.msg_id;
};
json.forEach(checkArrayElements);
并讨论旧版浏览器没有实施的问题:https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Array/forEach所以你可以这样做