我尝试使用ember构建一个Web应用程序,我使用路由模型:post_id但不起作用: http://www.wilhelminaschool.eu/app2/#posts可以正常工作并显示一个列表 链接到#post/11330无效,错误:断言失败?
我做错了什么?
答案 0 :(得分:0)
将路由器地图更改为
App.Router.map(function() {
this.route("page");
this.route("menu");
this.resource('posts', function(){
this.resource('post', { path: '/:post_id' });
)};
this.route("index", { path: "/" });
this.route("cat");
this.route("foto");
});