我发现了一个线程,我应该实现Post Route,但是我得到了更多的错误。有人有想法吗?
App = Ember.Application.create({
LOG_TRANSITIONS: true
});
App.Router.map(function() {
// put your routes here
//this.resource("projects", function() {});
this.resource('posts', function() {});
this.resource('projects');
});
App.PostsRoute = Ember.Route.extend({});
答案 0 :(得分:0)
我相信posts.index
只有在posts
嵌套的子路线时才会被创建(根据您发布的代码,您似乎没有。请尝试将链接替换为{ {1}} posts.index
。