我有一个像这样的 Ember.js 路由:
this.route 'doc', path: '/docs/:doc'
我需要根据:doc
参数设置模板。我怎样才能做到这一点?
谢谢。
我有一个像这样的 Ember.js 路由:
this.route 'doc', path: '/docs/:doc'
我需要根据:doc
参数设置模板。我怎样才能做到这一点?
谢谢。
也许你可以尝试这样的事情:
App.DocView = Ember.View.extend({
render : function(buffer){
var context = this.get("context.content");
this.set("templateName", context);
this._super(buffer);
}
});
链接到小提琴:http: //jsfiddle.net/mavilein/DQ8gS/2/