ng-bind-html与UI Bootstrap指令

时间:2015-02-11 21:58:55

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

我认为这不是直接问题,但我不知道如何做到这一点。我试图动态加载使用UI Bootstrap指令的内容,但是当内容加载时,UI Bootsrap组件不起作用。更具体的说,工具提示不起作用。这是重要的代码:

<div ng-bind-html="trustSnippet(f.field.contentAfter)"></div>

javascript

$scope.trustSnippet = function(snippet) {
          return $sce.trustAsHtml(snippet);
};

我试图注入的HTML是:

<i class="fa fa-exclamation-circle" tooltip-placement="right" tooltip="On the Right!"></i>

任何线索?

TY

2 个答案:

答案 0 :(得分:3)

这是因为ng-bind-html不会编译插入的元素,因此UI Bootstrap指令 - 或任何其他指令或表达式也不起作用。

如果您从特定位置获取HTML,则只需使用ng-include

对于静态位置:

<div ng-include="'path/to/html'"></div>

或者,如果该位置是动态的并存储在以范围公开的变量中:$scope.path = "path/to/html";

<div ng-include="path"></div>

否则,如果动态生成或导入带有Angular表达式/指令的HTML本身(一种罕见的情况,这应该让您重新检查您的设计以确保您没有冒犯任何最佳实践),您需要使用$compile服务编译它,最好使用指令:

app.directive("ngBindHtmlCompile", function($compile, $sce){
  return {
    restrict: "A",
    link: function(scope, element, attrs){
      scope.$watch($sce.parseAsHtml(attrs.ngBindHtmlCompile), function(html){
        var el = angular.element("<div>").html(html);
        element.empty();
        element.append(el.children());
        $compile(element.contents())(scope);
      })
    }
  };
});

不要忘记添加"ngSanitize"作为依赖项。用法是:

<div ng-bind-html-compile="html"></div>

答案 1 :(得分:1)

我遇到了同样的问题。以下方法对我有用。

在HTML中,

<div ng-bind-html="f.field.contentAfter | unsafe"></div>

在Javascript中,

app.filter('unsafe', function($sce) {
  return function(val) {
      return $sce.trustAsHtml(val);
  }; 
});