angularjs – uib-popover-html不接受我的html字符串

前端之家收集整理的这篇文章主要介绍了angularjs – uib-popover-html不接受我的html字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用角度ui-bootstrap的verion 0.14.2.我无法在弹出窗口中显示行返回.
我使用popover-html指令和一个字符串如
Limite inférieure<br>Limite supérieure

它给出以下错误

Lexer Error: Unexpected next character  at columns 41-41 [é] in expression [<div>Approchant des limites<br>Limite supérieure: 34:12<br>Limite inférieure: -34:12</div>].

我尝试在$sce.trustAsHtml调用中包装我的字符串,但它没有改变一件事.

这是一个掠夺者
http://plnkr.co/edit/3JSly1anPBUiGyqBcsD1

使用$sce.trustAsHtml为我工作如下.

注意:trustAsHtml告诉Angular相信HTML是安全的,所以只有在你信任HTML时才使用它,即它不是用户提供的.

JS:

$scope.popoverContent = $sce.trustAsHtml('Line 1<br>Line2');

HTML:

<button popover-placement="right" uib-popover-html="popoverContent" type="button" class="btn btn-default">Popover</button>

Updated Plunker

或者,如果您的内容是动态的,并且您需要一个功能

JS:

$scope.input = 'Line 1<br/>Line 2';

var trusted = {};

$scope.getPopoverContent = function(content) {
  return trusted[content] || (trusted[content] = $sce.trustAsHtml(content)); 
}

HTML:

<button popover-placement="right" uib-popover-html="getPopoverContent(input)" type="button" class="btn btn-default">Popover</button>

Plunker

(缓存trustAsHtml返回的值的原因是trustAsHtml总是返回一个新对象,因此可能导致无限$digest循环)

原文链接:https://www.f2er.com/angularjs/142421.html

猜你在找的Angularjs相关文章