标签:
ember常用的方法(官方文档的翻译而已):
1.modelFor
在路由层级中,返回父路径路由解析的model,具体例子如下:
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‘));
}
});
标签:
原文地址:http://www.cnblogs.com/huangwenyi/p/5212092.html