単純なルートの追加に問題があり、デバッグ方法がわかりません。
次のように指定されたルートがあります
Videos.Router.map(function({
this.resource('videos', {path:'/');
this.route('forms');
})
Videos.FormsRoute = Ember.Route.extend({
renderTemplate: function({
this.render({controller: 'forms'});
}
})
次のようなフォーム テンプレートもあります。
<script type="text/x-handlebars" data-template-name="forms">
しかし、URL /forms に移動すると、ページが見つからないというエラーが表示されます。
これを解決するために探し始めることができるアイデアはありますか?