1

好的,我想处理来自 jQuery 请求的 JSON 响应中返回的每个值的另一个 javascript 请求,这是我用于此请求的当前代码

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 来处理数组,知道怎么做吗?

4

2 回答 2

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);
})
于 2013-02-10T14:49:42.943 回答
0

使用简单的 for 循环,可能比 for each 更快

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 所以你可以这样做

于 2013-02-10T15:09:20.603 回答