<a routerlink="#Profile">Profile</a>不是在棱角分明的4

时间:2017-11-15 12:13:55

标签: angular angular4-router

我在index.html文件中使用<a routerLink="/Profile">Profile</a>时遇到了问题。锚标签无法正常工作。我在header.html上放置了标题菜单,并希望为angular 4中的Routing添加以下代码

<a href="#Profile" routerLink="/Profile" routerLinkActive="active">
<span class="icon-cogs"></span>Profile</a>

<router-outlet></router-outlet>位于app.component.html

当我将其放入任何其他组件但在index.html中无法使用时,相同的行代码<a routerLink="/Profile">Profile</a>工作文件

1 个答案:

答案 0 :(得分:0)

  

你不应该把这个代码放在index.html中,它不会工作,它应该在里面   成分

routerLink是这样的:

routerLink="/Profile"

所以保持这样:

<a routerLink="/Profile" routerLinkActive="active">

有关详细信息,请阅读:

https://angular.io/guide/router