Model reloading with Ember Data
问题 I'm trying to poll for more data using the documented model.reload() function App.ModelViewRoute = Ember.Route.extend({ actions: { reload: function() { this.get('model').reload(); } } }); But i'm getting an error message saying... undefined is not a function TypeError: undefined is not a function Is there a better way of doing this, it seems like I cannot access the model in this way from the route? Here is the router App.Router.map(function() { this.route('video', { path: '/videos/:video_id'