我使用角度ui-bootstrap的verion 0.14.2.我无法在弹出窗口中显示行返回.
我使用popover-html指令和一个字符串如
我使用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调用中包装我的字符串,但它没有改变一件事.
使用$sce.trustAsHtml为我工作如下.
原文链接:https://www.f2er.com/angularjs/142421.html注意: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>
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>
(缓存trustAsHtml返回的值的原因是trustAsHtml总是返回一个新对象,因此可能导致无限$digest循环)