Emberjs - Connecting an {{ input }} filter bar with my list of Objects. As I type, the list filters
问题 I am trying to incorporate this working example http://jsbin.com/AViZATE/37/edit of a filtering search bar with my own project. The search bar does not seem to be connected to my list of objects. :( Let me show you what I've done. App.RecordCategoriesController = Ember.ArrayController.extend({ searchResult: function(){ var searchTerm = this.get('searchTerm'); var regExp = new RegExp(searchTerm,'i'); this.get('model').set('content',this.store.filter('recordCategory',function(item){ return