ember經常使用的方法(官方文檔的翻譯而已):javascript
1.modelFor
在路由層級中,返回父路徑路由解析的model,具體例子以下:java
App.Router.map(function() {
this.route('post', { path: '/post/:post_id' }, function() { this.route('comments', { resetNamespace: true }); }); }); App.CommentsRoute = Ember.Route.extend({ afterModel: function() { this.set('post', this.modelFor('post')); } });