1
ページの更新時に '/ splash'ルートを強制的にナビゲートするにはどうすればよいですか?ページ更新時にルータをリセットするにはどうすればよいですか?
自分自身が '/ discover'にあり、ページを更新するとそこに残りますが、アプリケーションを最初からやり直したい(スプラッシュ)ようにします。私は私の親AppComponentのOnInit
& OnDestroy
メソッド内router.navigate
通話を発信しようとしてきました
const appRoutes: Routes = [
{ path: '', redirectTo: '/splash', pathMatch: 'full' },
{ path: 'splash' , component: SplashComponent },
{ path: 'discover' , component: DiscoverComponent },
{ path: 'broadcast' , component: BroadcastComponent },
{ path: 'notifications' , component: NotificationsComponent },
{ path: 'notifications/:key' , component: NotificationComponent }
];
export const routing: ModuleWithProviders = RouterModule.forRoot(appRoutes);
は、しかし、無視されるように表示されます。
ngOnInit() : void {
this.router.navigate(['splash']);
}
私はまた、ルータ自体のOnDestroy
メソッド内でナビゲート通話を発信しようとしました。
あなたはWebサーバのどのように使うのですか? Apache? – BeetleJuice