我是新来表达和棱角分明的人。我目前正在使用angular cli 10.0.2并表达v4.17。
我构建了一个非常简单的应用程序,并尝试使用MSAL学习登录/注销。我可以使用MSAL登录,也可以使用postLogoutRedirectUri: 'logout'
注销,其中logout
是角度组件。我没有从组件中看到注销的html,而是得到了{"error":{"status":404}}
,我认为这是来自express。
表达
// catch 404 and forward to error handler
app.use(function (req, res, next) {
//console.log(res);
var err = new Error('Not Found');
err.status = 404;
next(err);
});
角形
const routes: Routes = [
{
path: 'home',
component: HomeComponent,
canActivate: [MsalGuard]
},
{
path: 'logout',
component: LogoutComponent
},
{
path: '',
//component: AppComponent,
redirectTo: 'home',
pathMatch: 'full'
}]
有人可以帮助我了解在无法找到角度分量的情况下快速表达和角度表达的情况吗?