在调用trustAsHtml Angularjs之后将新的html绑定到控制器

时间:2014-03-22 02:27:52

标签: angularjs angularjs-scope ng-bind-html

我能够从服务器收到新的html,但后来我需要将它绑定到模型。即使我在插入并显示后5秒编译它,html也不会绑定到模型。

让我简要举例说明

function coolController($scope, $http, $log, $sce, $compile, $timeout){
$scope.message = {
        error: 'Kernel panic! :)',
        otherInfo: ''
    }

    $scope.form = $sce.trustAsHtml('<div></div>');

    $scope.Init = function(){
        $http({
            method: 'GET',
            url: helper.url('/form')
        }).
        success(function(data, status, headers, config) {
            $scope.form = $sce.trustAsHtml(data);
            $timeout(function(){
            $compile(angular.element('#elemThatContainsTheNewHTML'))($scope);
            }, 2500);

        }).
        error(function(data, status, headers, config) {
            $scope.message.error = data;            
        });
    }
}

我们假设html是

<div>
My cool error: {{ message.error }}
</div>

和它嵌入的地方应该是:

<div ng-controller="coolController">
    <h4>Hello???</h4>

    <div ng-init="Init()">
      <span class="alert-error" ng-if="errorMessage.length > 0">{{errorMessage}}</span>
    </div>

    <div id="elemThatContainsTheNewHTML" class="viewContent" ng-bind-html="form">
    </div>
</div>

html是正确嵌入的,但我想将它绑定到模型。

2 个答案:

答案 0 :(得分:2)

查看this related question的答案,该答案描述了使用指令编译模板:

  

这有点棘手,因为ng-bind-html只会插入普通的旧html而不打算编译它(所以html中的任何指令都不会被angular处理。

这是一个demo,将建议的技术与您的代码相结合。

答案 1 :(得分:1)

我是同样的问题,我制作了角度指令,它将重新呈现html内容。 指令代码如下。

指令:

app.directive('bindUnsafeHtml', ['$compile', function ($compile) {
      return function(scope, element, attrs) {
            console.log("in directive");
          scope.$watch(
            function(scope) {
              // watch the 'bindUnsafeHtml' expression for changes
              return scope.$eval(attrs.bindUnsafeHtml);
            },
            function(value) {
              // when the 'bindUnsafeHtml' expression changes
              // assign it into the current DOM
              element.html(value);

              // compile the new DOM and link it to the current
              // scope.
              // NOTE: we only compile .childNodes so that
              // we don't get into infinite loop compiling ourselves
              $compile(element.contents())(scope);
            }
        );
    };

}]);

<强> HTML:

<div bind-unsafe-html="form">//your scope data variable which wil assign inn controller
</div>

别忘了在你配置angularJs项目的地方导入指令。希望这对你有用。