为什么ng-bind-html只显示没有链接的文本?

时间:2016-04-17 01:34:29

标签: javascript html angularjs

我正在使用ng-repeat来显示列表。在我的数据中,有一个字段包含 Url ,我需要将其显示为 html 页面中的链接。请看下面的截图:

我的Html:

enter image description here

我呈现的页面:
enter image description here

我在页面中添加了angular-sanitize.js脚本,并在主模块中添加了对“ngSanitize”的依赖。但我找不到为什么ng-bind-html只显示没有链接的文字?非常感谢帮助。

建议1结果:
enter image description here

并更新了代码:
enter image description here

1 个答案:

答案 0 :(得分:2)

您必须使用超链接(<a>

<a href="{{ sc.url }}" ng-bind="sc.Url"></a>