我正在为路线的动态部分而苦苦挣扎。这是我的代码
App.Router.map(function(){
this.resource('stuff', {path: '/stuff/:stuff_id'}, function() {
this.route('make');
this.route('edit');
this.route('delete');
this.route('history');
});
});
App.StuffRoute = Ember.Route.extend({
model: function(param) {
},
setupController: function (){
},
renderTemplate: function() {
}
});
App.StuffView= Ember.View.extend({
defaultTemplate: Ember.Handlebars.compile(stuffTemplate)
});
App.StuffController = Ember.Controller.extend();
我应该在StaffRoute
我停止No route matched the URL 'crisis'
出错的模型中放入什么?对于localhost/#stuff
以及如何正确设置动态段部分?我对 ember 文档的唯一问题是,所有示例都使用未准备好生产的 ember-data,我不想使用它。