1

我对 jQuery 有以下问题。我使用这段代码:

function populate_select_from_json(select, json_url) {
    select.empty();
    $.getJSON(json_url, function(data) {
        $.each(data, function(key, value) {
            $("<option></option>")
                .attr("value", value.name)
                .text(value.title)
                .appendTo(select);
        });
    });
    select.children(":first").attr("selected", true);
}
$(document).ready(function() {
    var value_type = $("#value_type");
    populate_select_from_json(value_type, SOME_URL);

    var unit = $("#unit");
    populate_select_from_json(unit, ANOTHER_URL + value_type.val());

});

我想:

  1. 加载文档
  2. 从关联的数据库中获取一些 JSON 数据
  3. 将数据放入#value_type <select>item
  4. 获取#value_typeselect 的值,并再次查询数据库以填充另一个选择项。

问题是,当我调用时value_type.val(),它总是输出null,即使 #value_type <select>正确填充。我在这里做错了什么?

4

1 回答 1

2

我想这样的事情可能会更好地与promises.

沿着这些思路(未经测试):

var populate_select_from_json = function($select, json_url) {
    $select.empty();
    return $.getJSON(json_url, function(data) {
        $.each(data, function(key, value) {
            $("<option></option>")
                .attr("value", value.name)
                .text(value.title)
                .appendTo($select);
        });
        $select.children(":first").attr("selected", true);
    });
};

$(document).ready(function() {
    var $value_type = $("#value_type");
    var $unit = $("#unit");

    populate_select_from_json($value_type, SOME_URL).done(function(){
      populate_select_from_json($unit, ANOTHER_URL + $value_type.val());
    });
});
于 2013-01-01T17:14:52.717 回答