我有一个骨干观点。我想在搜索文本字段中发生的每次更改中从服务器设置引导输入的数据源。我怎样才能做到这一点??这是我的搜索视图
window.SearchByChoiceView = Backbone.View.extend({
initialize: function () {
this.model = new SearchByChoiceModel();
this.render();
},
render: function () {
$(this.el).empty().html(this.template(this.model.toJSON()));
return this;
},
});
window.SearchByChoiceModel = Backbone.Model.extend({
initialize: function () {
},
defaults: {
id: 1,
SearchKeyword: "",
"tags": new Array()
}
});
这是我的搜索字段:
<input type="text" required placeholder="search" class="input-span3" id="SearchKeyword" title= "Search Keyword" name="SearchKeyword" value="<%= SearchKeyword %>" style="margin: 0 auto;" data-provide="typeahead" data-items="4">
请任何人帮助。我是一个有骨气的初学者。也许这很容易,但对我来说很难处理。我已经尝试了很多。