URLが変わった時のルートを取得したい
https://localhost:3200
に
https://localhotst:3200/login
ルートが変更されたときにログインを取得するにはどうすればよいですか
これが私が試したことです:
route.params.pipe(
takeUntil(this.destroy)
).subscribe(params => {
if (this.currentDialog) {
this.currentDialog.close();
}
this.currentDialog = matDialog.open(DialogComponent, {
data: { tabvalue, param.id}
}); //this is the code i took from a web site but i don't know how to apply it
});
param.id では、id は変数ですが、使用したくありません。path: 'login', component: NavbarComponent } このパスのようなものが欲しいだけです