0

我在任何函数之外声明 windows.uris,然后在警告 window.uris 为空时在最后一行添加 $.each() 中的元素。为什么 ?

window.uris = new Array(); 

window.groups = new Array();

jQuery(document).ready(function($) {


host = document.location.host,
path = document.location.pathname;
url = host + path;
var domg = new Object();
var optgroup;
var productsDom = "";

  if (contains(url, 'manage/items.php')) {
    $.post('http://localhost/frontaccounting/proxy.php',
    {
        "url":"http://localhost:8081/stock/categories/",
        "m":"get",
        "data": ""
    },
      function (data) {
        d = $.parseXML(data);
        $xml = $( d );

        $xml.find("category").each(
            function (i,e) {
                optgroup = '<optgroup label="'+ $(e).children("name").text()+'">';
                categoryId = $(e).children("id").text();
                auxx =  (categoryId*1);
                window.uris[i]="http://localhost:8081/stock/categories/" + (auxx );
                window.groups[auxx + ""] = optgroup;
            }
        );
    }
    );  
    //sleep(2000);
        alert('URI' + window.uris);
4

1 回答 1

2

在您的函数中,您对某个 url 进行异步调用。但是,该alert命令在您的函数内部,而不是在回调内部。

所以它会被立即调用,而不是等到 AJAX 请求完成并且您的数据存在。

一个简单的解决方案是将您alert的回调函数移到内部。

于 2012-05-14T11:33:14.243 回答