我正在使用 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() ,但它没有用。
有什么问题?