2
デフォルトのサブステージを新しいAngular2ルータで使用する正しい方法は何ですか?例えばルータをAngular2でデフォルトの状態にリダイレクト
私は、ルータが
/user
は、ユーザー状態のデフォルトのサブのよう
/user/profile
にリダイレクトします。
デフォルトのサブステージを新しいAngular2ルータで使用する正しい方法は何ですか?例えばルータをAngular2でデフォルトの状態にリダイレクト
私は、ルータが
/user
は、ユーザー状態のデフォルトのサブのよう
/user/profile
にリダイレクトします。
リダイレクトをとすると、以下のようになります。
ユーザーが原因redirectToのwww.domain.com/userに移動しようとすると、彼は www.domain.com/user/profile にリダイレクトされます。
import { Routes,RouterModule } from '@angular/router';
let routes: Routes = [
{ path: '/user', redirectTo: '/user/profile', pathMatch: 'full'},
{ path: '/user/profile', component:somecomponent },
];
export const routing = RouterModule.forRoot(routes);
迅速な対応に感謝します。 –
あなたは大歓迎です! – micronyks