0

我正在使用 now.js 和 nano(CouchDB 库)来填充选项。

服务器:

everyone.now.getThings = function(thing) {
  var self = this;
  return db.view('lists', 'some_things', function(error, data) {
    var list = data.rows.map(function(obj) {
      return '<option value="' + obj['id'] + '">' + obj['value'] + '</option>';
    });
    return self.now.receiveThings(list);
  });
};

客户:

$(document).ready(function() {
  now.getThings($('select#thing').val());

  $("#poke").click(function() {
    now.getThings($('select#thing').val());
  });
});

在客户端上,它对第一次调用说“TypeError:'undefined' is not a function”。在 .click()-Function 中一切正常。

now.js 在 application.js 之前加载。我也尝试了 $(now).ready() ,但它没有用。

有什么问题?

4

1 回答 1

0

我通过在翡翠模板调用中包含第一组数据并在选择上创建了一个.change()处理程序来解决了这个问题。

于 2011-11-29T09:40:27.863 回答