在Angular 6中是否有可能采用任何参数的路由。我从身份验证提供者处收到以下回叫,但路由失败:
http://localhost:4200/authcallback#id_token=xx&session_state=e59daa61-7342-425a-b484-0c36440be471
我有以下路线:
{path:'authcallback', component: AuthCallbackComponent},
const routerOptions: ExtraOptions = {
useHash: false,
anchorScrolling: 'enabled'
};
也许有一天提供商会提供更多参数,所以如果我能得到上面的参数,那就太好了,如果还有其他参数,那就忽略它们。