0

我正在尝试将侧边菜单项链接到外部网站,但它似乎不起作用

下面是我的代码

{
  title: 'Word of the Week',
  url: '/word',
  icon: './assets/sample-icons/side-menu/word.svg'
},
{
  title: 'Facebook',
  url: 'https://www.fb.com',
  icon: './assets/sample-icons/side-menu/fb.svg'
},

我尝试删除 https,从 www 和其他修改开始,但它们似乎并没有使它工作

任何帮助,将不胜感激

4

1 回答 1

0

发生这种情况是因为 Angular 出于安全原因转义了 URL(请参阅https://angular.io/api/platform-b​​rowser/DomSanitizer)。

这是一个很好的解决方案,它使用重定向保护:https ://stackoverflow.com/a/51059505/3530591

于 2019-12-06T01:59:55.540 回答