2

我有一个骨干观点。我想在搜索文本字段中发生的每次更改中从服务器设置引导输入的数据源。我怎样才能做到这一点??这是我的搜索视图

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">

请任何人帮助。我是一个有骨气的初学者。也许这很容易,但对我来说很难处理。我已经尝试了很多。

4

1 回答 1

2

我相信你可以做到这一点:

$( '.typeahead' ).typeahead( {
    source : typeAhead.people.pluck( 'name' )
  } );
});

其中“typeAhead.people”是您的集合实例。在你的情况下

myApp.myCollection.pluck( 'SearchKeyword' )

JS宾:

http://jsbin.com/upigej/1/edit

于 2012-12-20T16:15:31.157 回答