标签: 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=preview(offical example from the docs的分叉)。
答案 0 :(得分:1)
使用ng-bind-html指令在视图
ng-bind-html
<p ng-bind-html="slide.text"></p>
Demo Plunkr