我正在尝试使用带有完整日历事件的angular bootstrap-ui 弹出框来使用 html 制作自定义弹出框,如下所述:Getting Angular UI Calendar to work with UI-Bootstrap Tooltips
但我需要使用更复杂的弹出框并且需要使用uib-popover-html
如下:
$scope.eventRender = function( event, element, view ) {
var test = $sce.trustAsHtml('<b> Hello World! </b>');
element.attr({'uib-popover-html': test,
'popover-trigger' : 'mouseenter',
'popover-append-to-body': true});
$compile(element)($scope);
};
但是当它抛出以下错误时:
错误:[$parse:syntax] 语法错误:标记“<”不是表达式 [ Hello World! ] 从 [ Hello World! ]。
我究竟做错了什么?