我刚刚使用Angular CLI创建了一个新的 Angular 项目,并使用以下命令在其中搭建了一个新的路由用户。
ng new myproj
cd myproj
ng g route user
然后我使用ng serve
.
但是当我访问该页面时,我看不到登录模板的内容,/login
除非我添加指向某个路由的链接,即:
<a [routerLink]="['/user']">User Info</a>
当我添加上面的行时,router-outlet
会被填充,但是如果我去掉这行,那么router-outlet
渲染就会再次为空。
这里发生了什么事?
有人知道为什么会这样吗?
示例文件
/src/app/myproj.component.ts
import { Component } from '@angular/core';
import { Routes, ROUTER_DIRECTIVES, ROUTER_PROVIDERS} from '@angular/router';
@Component({
moduleId: module.id,
selector: 'myproj-app',
templateUrl: 'myproj.component.html',
styleUrls: ['myproj.component.css'],
directives: [ROUTER_DIRECTIVES],
providers: [ROUTER_PROVIDERS]
})
@Routes([
{path: '/user', component: UserComponent}
])
export class MyprojAppComponent {
title = 'Main Component working!';
}
/src/app/myproj.component.html
<h1>{{title}}</h1>
<router-outlet></router-outlet>
和不可理解的解决方法
<a [routerLink]="['/user']">User Info</a>
/src/app/+user/user.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
moduleId: module.id,
selector: 'app-user',
templateUrl: 'user.component.html',
styleUrls: ['user.component.css']
})
export class UserComponent implements OnInit {
constructor() {}
ngOnInit() {
}
}
/src/app/+user/user.component.html
<p>
It should be showing but it isn't!
</p>