如果父对象没有持久化(没有:id),如何构建嵌套路由?
我基本上构建了一个对象配置向导,其中一本书有几个子配置模型。用户通过配置的路径大致是:
我必须创建两组路由 - 一个用于编辑,一个用于新路径,省略路径中的book.id?有没有办法一次性完成?
//my routes:
this.route('upload-manuscripts', function() {
this.route('new');
});
Router.map(function() {
this.route('book', {path: '/:id'}, function() {
this.route('configuration', function() {
this.route('cover');
this.route('spine');
this.route('pagination');
});
});
});
谢谢!