无法重定向到angular5中的配置文件网址

时间:2018-06-23 15:25:36

标签: angular angular5 frontend

在angular5中使用一个简单的应用程序工作,我有一个包含“ profil”链接的标头,单击链接时我试图将用户重定向到profilComponent,但没有任何反应,而是使用户退出了该应用程序。

我正在使用jwt进行身份验证。

这是项目结构的样子:

enter image description here

对于profil组件,它存在于views目录中:

enter image description here

我已经在profil模块中添加了ProfilRoutingModule,并且还在app.routing.ts中添加了profil模块:

{
    path: 'profil',
    loadChildren: './views/profil/profil.module#ProfilModule'
  },

我想念什么吗?为什么我不能重定向到配置文件并退出应用程序?有想法吗?

2 个答案:

答案 0 :(得分:1)

为什么使用href? Angular有routerlink。 像这样使用它。

routerLink="/profile"

答案 1 :(得分:1)

您需要设置 routerLink 而不是href

  <li><a [routerLink]="['/profil']">Profil</a></li>