ルートの動的セグメントに苦労しています。これが私のコードです
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
残り火のドキュメントに関する私の唯一の問題は、すべての例が生産準備ができていない残り火データを使用しており、私はそれを使用したくないということです。