链接到角度重定向到应用程序的外部URL

时间:2019-01-24 23:15:10

标签: html angular routing

可能是一个简单的问题,但我是Angular的新手。

我已经在导航栏中设置了路由设置,但是我有一个链接到外部URL的链接,当我单击它时,它会将我重定向回应用程序,甚至不在本地路径中(HomeComponent丢失)

链接看起来像这样:

 <a href="www.stackoverflow.com" target="_blank">

这是我的路由路径:

const routes: Routes = [
    { path: '', component: HomeComponent },
    { path: 'a-propos', component: AProposComponent },
    { path: 'savoir', component: SavoirComponent },
    { path: 'diplomes', component: DiplomesComponent },
    { path: 'expérience', component: ExperienceComponent },
    { path: 'portfolio', component: PortfolioComponent },
    { path: 'contact', component: ContactComponent },
];

1 个答案:

答案 0 :(得分:1)

在URL之前使用http://或https://进行尝试