开发者

jQuery: Problem populating array when calling $.getJSON

开发者 https://www.devze.com 2023-03-07 03:00 出处:网络
This is the code (refer to CODE) I use when I try to create new CouchDB document. The document contains one or more existing CouchDB documents (history tracking). The resulting json (refer to JSON) fo

This is the code (refer to CODE) I use when I try to create new CouchDB document. The document contains one or more existing CouchDB documents (history tracking). The resulting json (refer to JSON) for the newly created doc is something like:

JSON:

{

  "_id": "b3360050039389801524044daf1c963c",

  "_rev": "1-2a5da40ce9a191b4decc27411ec9a181",

   "hodoc_type": "INCOMMING DELIVERY NOTE",

   "user_from": "ANS USER",

   "status": "INSTALLED ON SITE",

   "category": "ASET",开发者_如何学Python

   "location": "MTX SPARE",

   "doctype": "hodoc",

   "items": [

     {

       "serial_number": "310310007590",

       "status": "STORED IN WAREHOUSE",

       "doctype": "data",

       "supplier": "INTRACOM",

       "po": "0",

       "category": "SPARE PART",

       "user_out": "IGOR JURUKOV",

       "mac": "NULL",

       "eqtype": "IDU",

       "location": "MTX SPARE",

       "location_comment": "NULL",

       "date_in": "2011-05-06",

       "date_out": "2011-05-06",

       "prf": "0",

       "part_number": "Z00-404/63.01",

       "user_in": "KOTE JANAKIEVSKI",

       "bar_code": "0",

       "manufacturer": "INTRACOM",

       "rma": "NULL",

       "product_name": "PSU for IDR-SM"

     },

     {

       "serial_number": "310407016955",

       "status": "STORED IN WAREHOUSE",

       "doctype": "data",

       "supplier": "INTRACOM",

       "po": "0",

       "category": "SPARE PART",

       "user_out": "IGOR JURUKOV",

       "mac": "NULL",

       "eqtype": "IDU",

       "location": "MTX SPARE",

       "location_comment": "NULL",

       "date_in": "2011-05-06",

       "date_out": "2011-05-06",

       "prf": "0",

       "part_number": "Z00-404/63.02",

       "user_in": "KOTE JANAKIEVSKI",

       "bar_code": "0",

       "manufacturer": "INTRACOM",

       "rma": "NULL",

       "product_name": "PSU for IDR-SM"

     }

   ]

}

CODE:

var docids = new Array();

var items = new Array();

$('div#divitemsout').find('img.item-out-remove').each(function () {

  var id = $(this).attr('attrid');

  if (docids.indexOf(id) == -1) {

    docids.push(docid);

  }

  var item = new Object;

  $.getJSON('/whdb/' + id, function(data) {

    $.each(data, function(key, val) {

      if (key !== "_id" && key !== "_rev") {

        item[key] = val;

      }

    });

    // Check No.1

    //alert(item.manufacturer);

  });

  // Check No.2

  //alert(item.manufacturer);

  items.push(item);

  });

The problem and the question are: When the line bellow Check No.2 is comented, the "items" part of the resulting json document is []. When the alert(item.manufacturer) bellow Check No.2 is uncommented, I get alerts with contents "undefined", but the "items" part of the resulting json document is properly set, just like show in the example. Any suggestion?


The problem is just timing. The function you pass to getJSON isn't called until the web server returns a response to your request. So item will not be defined immediately after the call to getJSON. Adding the alert calls just slows things down so that the asynchronous call has time to complete.

Try moving the items.push(item) line inside the getJSON callback.

Edit

To make things clear, try this (in Chrome or Firefox with Firebug open, so that you have a proper console.log function):

var docids = new Array();
var items = new Array();
var waiting = 0;
$('div#divitemsout').find('img.item-out-remove').each(function () {
  var id = $(this).attr('attrid');
  if (docids.indexOf(id) == -1) {
    docids.push(docid);
  }
  var item = new Object;
  waiting++;
  $.getJSON('/whdb/' + id, function(data) {
    waiting--;
    $.each(data, function(key, val) {
      if (key !== "_id" && key !== "_rev") {
        item[key] = val;
      }
    });
    items.push(item);
    if(waiting == 0) {
      console.log('items:', items);
    }
  });
});
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号