角度2:倍数<路由器出口>子路线

Angular 2: multiple <router-outlet> for sub routes

本文关键字:gt 出口 路由器 倍数 lt 角度      更新时间:2023-09-26

对于Angular 2,是否有任何方法可以使子路线不显示在主标签中

<router-outlet></router-outlet>

例如:

url : "http://mywebsite.com/"
MainComponent.ts
@Component({
    ...
    template:'<router-outlet></router-outlet>'
    ...
})
@RouteCongif([
    {path: '/products', name:'Product', component: Product}
])

这将子组件显示为<路由器出口>标签

好吧,现在有可能有这样的配置:

url : "http://mywebsite.com/products"
ProductComponent.ts
@Component({
    template: `
        ...
        <div> My list of products ! </div>
        ...
        <a [RouteLink]="['ProductDetails', {slug-product-details:product.slug}]"> 
           {{ product.name }} Details 
        </a>
        ...
        <sub-router-outlet></sub-router-outlet>
    `
})
@RouteConfig([
     {path: '/:slug-product-details', name:'ProductDetails', component: ProductDetailsComponent},
])

url : "http://mywebsite.com/products/one-product-details"
ProductDetailsComponent.ts
@Component({
    ...
    template : `
         <div> Details of the product : </div>
         ...
    `
    ...
})

我想用自动设计的url保持路由器的使用,并将路由和细节模板放入这种<子路由器出口>标签

谢谢你的帮助。

警告:以下代码仅适用于Angular2 Beta

您可以实现子路由。您的文件结构应该类似于此。

app.ts

@RouteConfig([
    ...
    { path: '/product/...', component: Product, name: 'Product'}
    { path: '/home', component: Home, name: 'Home'}
    ...
])
export class App { }

产品.ts

@Component({
    selector: 'product',
    templateUrl: 'app/components/product/product.html',
    directives: [ROUTER_DIRECTIVES]
})
@RouteConfig([
   ...
   { path: 'product-one', component: ProductOne, name: 'Product-one' },        
   { path: 'product-two', component: ProductTwo, name: 'Product-two', useAsDefault: true },
   ...
])
export class Product {
    constructor(location: Location, public router: Router) {}
    goToProductOne() {
        this.router.navigate(['Product','Product-one'])
    }
}

product.html

...
<a [routerLink]="['./Product-one']"> Product One </a>
<a [routerLink]="['/Home']"> Home </a>
...

其中['./Product-one']是子路线,['/Home']是父路线