当我使用<a routerLink="/settings">settings</a>
时,组件代码为:
const routes: Routes = [
{ path: 'home', component: HomeComponent},
{ path: 'settings', component: SettingsComponent},
{ path: '', redirectTo: '/home', pathMatch: 'full' }
];
它没有将/routing
导航到设置组件,而是在同一页面中打开。
我使用的是Angular 6.0.3版本。