mat*_*dev 3 angularjs angular2-routing angular
我正在试验Angular 2并遇到了一个我不确定如何调试的问题.
示例情况
我有一个AppComponent处理所有基本级别路由,并且每个"级别"的路由下来都在该级别的新路由器上声明.
我有以下路线:
AppComponentAppComponentApplicationRouterComponentApplicationRouterComponent作为周围模板的一部分,有一个导航栏对所有页面都是通用的,因此需要能够链接到子路由器中定义的任何路由.[routerLink]嵌套组件不会导致任何错误抛出.
问题
当链接到孙子路由时,看起来View组件甚至不构造.即
<a [routerLink]="['./ApplicationRouter/New']">New Application</a>
将ApplicationRouterComponent被构建并显示,但NewApplication分量却没有.
代码示例
appComponent.ts
import {Component} from 'angular2/core';
import {
RouteConfig,
ROUTER_DIRECTIVES,
ROUTER_PROVIDERS
} from 'angular2/router';
import {ApplicationRouterComponent} from './routes/application/applicationRouter';
import {HomeComponent} from './routes/home/homeComponent';
@Component({
selector: 'bop-application',
templateUrl: 'app/index.html',
directives: [ROUTER_DIRECTIVES],
providers: [ROUTER_PROVIDERS],
})
@RouteConfig([
{ path: '/home', name: 'Home', component: HomeComponent, useAsDefault: true },
{ path: '/applications/...', name: 'ApplicationRouter', component: ApplicationRouterComponent }
])
export class AppComponent { }
Run Code Online (Sandbox Code Playgroud)
./app/routes/application/applicationRouter
import {Component} from 'angular2/core';
import {
RouteConfig,
ROUTER_DIRECTIVES,
ROUTER_PROVIDERS
} from 'angular2/router';
import {NewApplicationComponent} from './new/newApplicationComponent';
import {FooComponent} from './new/foo';
@Component({
selector: 'application-router',
templateUrl: 'app/routes/application/index.html',
directives: [ROUTER_DIRECTIVES],
providers: [ROUTER_PROVIDERS],
})
@RouteConfig([
{ path: '/new', name: 'New', component: NewApplicationComponent},
{ path: '/foo', name: 'Foo', component: FooComponent},
])
export class ApplicationRouter {
constructor() {
debugger;
}
}
Run Code Online (Sandbox Code Playgroud)
./app/index.html
<h1>Portal</h1>
<nav>
<a [routerLink]="['Home']">Home</a>
<a [routerLink]="['./ApplicationRouter/New']">New Application</a>
</nav>
<router-outlet></router-outlet>
Run Code Online (Sandbox Code Playgroud)
./app/application/index.html
Application Router
<router-outlet></router-outlet>
Run Code Online (Sandbox Code Playgroud)
./app/application/new/new.html
<h4>New View</h4>
Run Code Online (Sandbox Code Playgroud)
路由器链接应该是
<a [routerLink]="['/ApplicationRouter', 'New']">New Application</a>
Run Code Online (Sandbox Code Playgroud)
路由器链接采用路由名称列表,而不是路径.支持的某些字符在路径中被解释
/xxx 从根路由器开始 .. 从父路由器开始 ./xxx 用于当前路由器(AFAIK冗余)| 归档时间: |
|
| 查看次数: |
871 次 |
| 最近记录: |