AngularUI Bootstrap:在轮播文本中解析HTML

时间:2016-09-11 08:48:29

标签: angularjs angular-ui-bootstrap angular-ui

我正在尝试实现Angular UI Bootstrap Carousel并在文本中包含HTML。以为我可以使用像

这样的东西
text: $sce.trustAsHtml('Nice image <br />test')

但显然这不起作用,我也不知道为什么。

Plunkr:https://plnkr.co/edit/9PvaS8SoRmN1o52wiAf8?p=previewoffical example from the docs的分叉)。

1 个答案:

答案 0 :(得分:1)

使用ng-bind-html指令在视图

上显示html内容
<p ng-bind-html="slide.text"></p>

Demo Plunkr