825

是否可以在 AngularJS 控制器中创建一个HTML片段并将这个 HTML 显示在视图中?

这是因为需要将不一致的 JSON blob 转换为嵌套的id: value对列表。因此HTML是在控制器中创建的,我现在正在寻找显示它。

我已经创建了一个模型属性,但是如果不打印HTML就无法在视图中呈现它。


更新

看来问题是由于将创建的 HTML 渲染为引号内的字符串而引起的。将尝试找到解决此问题的方法。

示例控制器:

var SomeController = function () {

    this.customHtml = '<ul><li>render me please</li></ul>';
}

示例视图:

<div ng:bind="customHtml"></div>

给出:

<div>
    "<ul><li>render me please</li></ul>"
</div>
4

17 回答 17

1142

对于 Angular 1.x,ng-bind-html在 HTML 中使用:

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

此时您会收到一个attempting to use an unsafe value in a safe context错误,因此您需要使用ngSanitize$sce来解决该问题。

$sce

$sce.trustAsHtml()在控制器中使用来转换 html 字符串。

 $scope.thisCanBeusedInsideNgBindHtml = $sce.trustAsHtml(someHtmlVar);

ngSanitize

有2个步骤:

  1. 包括 angular-sanitize.min.js 资源,即:

    <script src="lib/angular/angular-sanitize.min.js"></script>
    
  2. 在 js 文件(控制器或通常是 app.js)中,包含 ngSanitize,即:

    angular.module('myApp', ['myApp.filters', 'myApp.services', 
        'myApp.directives', 'ngSanitize'])
    
于 2012-06-10T19:39:07.937 回答
315

您还可以像这样创建过滤器:

var app = angular.module("demoApp", ['ngResource']);

app.filter("trust", ['$sce', function($sce) {
  return function(htmlCode){
    return $sce.trustAsHtml(htmlCode);
  }
}]);

然后在视图中

<div ng-bind-html="trusted_html_variable | trust"></div>

注意:此过滤器信任传递给它的任何和所有 html,如果将带有用户输入的变量传递给它,则可能会出现 XSS 漏洞。

于 2014-08-26T18:52:15.520 回答
124

Angular JS 在标签内显示 HTML

上面链接中提供的解决方案对我有用,这个线程上的选项都没有。对于任何使用 AngularJS 版本 1.2.9 寻找相同东西的人

这是一个副本:

好的,我找到了解决方案:

JS:

$scope.renderHtml = function(html_code)
{
    return $sce.trustAsHtml(html_code);
};

HTML:

<p ng-bind-html="renderHtml(value.button)"></p>

编辑:

这是设置:

JS文件:

angular.module('MyModule').controller('MyController', ['$scope', '$http', '$sce',
    function ($scope, $http, $sce) {
        $scope.renderHtml = function (htmlCode) {
            return $sce.trustAsHtml(htmlCode);
        };

        $scope.body = '<div style="width:200px; height:200px; border:1px solid blue;"></div>'; 

    }]);

HTML 文件:

<div ng-controller="MyController">
    <div ng-bind-html="renderHtml(body)"></div>
</div>
于 2014-03-25T16:25:10.573 回答
66

幸运的是,您不需要任何花哨的过滤器或不安全的方法来避免该错误消息。这是以预期和安全的方式在视图中正确输出 HTML 标记的完整实现。

sanitize 模块必须包含在 Angular 之后:

<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.26/angular-sanitize.js"></script>

然后,必须加载模块:

angular.module('app', [
  'ngSanitize'
]);

这将允许您在来自控制器、指令等的字符串中包含标记:

scope.message = "<strong>42</strong> is the <em>answer</em>.";

最后,在模板中,它必须像这样输出:

<p ng-bind-html="message"></p>

这将产生预期的输出:42答案

于 2014-10-16T18:32:13.453 回答
63

我今天试过了,我发现的唯一方法是这个

<div ng-bind-html-unsafe="expression"></div>

于 2012-07-24T22:49:49.293 回答
52

ng-bind-html-unsafe不再工作。

这是最短的方法:

创建过滤器:

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

在您看来:

<div ng-bind-html="customHtml | unsafe"></div>

PS 此方法不需要您包含ngSanitize模块。

于 2015-08-23T02:45:58.913 回答
27

在 html 上

<div ng-controller="myAppController as myCtrl">

<div ng-bind-html-unsafe="myCtrl.comment.msg"></div>

或者

<div ng-bind-html="myCtrl.comment.msg"></div

在控制器上

mySceApp.controller("myAppController", function myAppController( $sce) {

this.myCtrl.comment.msg = $sce.trustAsHtml(html);

也适用于$scope.comment.msg = $sce.trustAsHtml(html);

于 2013-12-17T17:20:44.963 回答
9

我发现使用 ng-sanitize 不允许我在 html 中添加 ng-click。

为了解决这个问题,我添加了一个指令。像这样:

app.directive('htmldiv', function($compile, $parse) {
return {
  restrict: 'E',
  link: function(scope, element, attr) {
    scope.$watch(attr.content, function() {
      element.html($parse(attr.content)(scope));
      $compile(element.contents())(scope);
    }, true);
  }
}
});

这是 HTML:

<htmldiv content="theContent"></htmldiv>

祝你好运。

于 2014-09-22T21:34:09.683 回答
6

只是按照angular(v1.4) docs使用 ngBindHtml 做到了这一点,

<div ng-bind-html="expression"></div> 
and expression can be "<ul><li>render me please</li></ul>"

确保在模块的依赖项中包含 ngSanitize。然后它应该可以正常工作。

于 2015-03-19T02:41:00.570 回答
4

另一个与 blrbr 非常相似的解决方案,除了使用范围属性是:

angular.module('app')
.directive('renderHtml', ['$compile', function ($compile) {
    return {
      restrict: 'E',
      scope: {
        html: '='
      },
      link: function postLink(scope, element, attrs) {

          function appendHtml() {
              if(scope.html) {
                  var newElement = angular.element(scope.html);
                  $compile(newElement)(scope);
                  element.append(newElement);
              }
          }

          scope.$watch(function() { return scope.html }, appendHtml);
      }
    };
  }]);

进而

<render-html html="htmlAsString"></render-html>

请注意,您可以替换element.append()element.replaceWith()

于 2014-10-01T15:12:26.647 回答
3

你也可以使用ng-include

<div class="col-sm-9 TabContent_container" ng-include="template/custom.html">
</div>

您可以使用“ng-show”来显示隐藏此模板数据。

于 2014-10-17T06:32:39.323 回答
3

使用在 Angular 中创建新属性或指令可以解决此问题的另一种方法。

产品规格.html

 <h4>Specs</h4>
        <ul class="list-unstyled">
          <li>
            <strong>Shine</strong>
            : {{product.shine}}</li>
          <li>
            <strong>Faces</strong>
            : {{product.faces}}</li>
          <li>
            <strong>Rarity</strong>
            : {{product.rarity}}</li>
          <li>
            <strong>Color</strong>
            : {{product.color}}</li>
        </ul>

应用程序.js

 (function() {
var app = angular.module('gemStore', []);    
app.directive("     <div ng-show="tab.isSet(2)" product-specs>", function() {
return {
  restrict: 'E',
  templateUrl: "product-specs.html"
};
});

索引.html

 <div>
 <product-specs>  </product-specs>//it will load product-specs.html file here.
 </div>

或者

<div  product-specs>//it will add product-specs.html file 

或者

<div ng-include="product-description.html"></div>

https://docs.angularjs.org/guide/directive

于 2014-11-18T05:47:16.517 回答
3

这是解决方案制作这样的过滤器

.filter('trusted',
   function($sce) {
     return function(ss) {
       return $sce.trustAsHtml(ss)
     };
   }
)

并将其作为过滤器应用到 ng-bind-html 之类的

<div ng-bind-html="code | trusted">

感谢 Ruben Decrop

于 2017-12-27T23:29:04.347 回答
1

采用

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

angular.module('MyApp', ['ngSanitize']);

为此,您需要包括angular-sanitize.js,例如在您的 html 文件中

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular-sanitize.js"></script>
于 2016-10-22T23:51:34.130 回答
0

这是一个简单(且不安全)bind-as-html的指令,不需要ngSanitize

myModule.directive('bindAsHtml', function () {
    return {
        link: function (scope, element, attributes) {
            element.html(scope.$eval(attributes.bindAsHtml));
        }
    };
});

请注意,如果绑定不受信任的内容,这将引发安全问题。

像这样使用:

<div bind-as-html="someHtmlInScope"></div>
于 2017-12-26T15:10:44.727 回答
-1

使用管道在 Angular 4 的模板中显示 html 的工作示例。

1.Crated Pipe escape-html.pipe.ts

`

import { Pipe, PipeTransform } from '@angular/core';
import { DomSanitizer } from '@angular/platform-browser';
@Pipe({name : 'keepHtml', pure : false})
export class EscapeHtmlPipe implements PipeTransform{
 constructor(private sanitizer : DomSanitizer){
 }
 transform(content){
  return this.sanitizer.bypassSecurityTrustHtml(content);
 }
}

` 2. 将管道注册到app.module.ts

 import {EscapeHtmlPipe} from './components/pipes/escape-html.pipe';
    declarations: [...,EscapeHtmlPipe]
  1. 在您的模板中使用

        <div class="demoPipe"  [innerHtml]="getDivHtml(obj.header) | keepHtml">

  2. getDivHtml() { //can return html as per requirement}

    请在关联的 component.ts 文件中为 getDivHtml 添加适当的实现。

于 2018-01-16T09:24:28.770 回答
-2

只是简单的使用[innerHTML],如下所示:

<div [innerHTML]="htmlString"></div>

在您需要使用之前ng-bind-html...

于 2019-01-31T09:44:22.100 回答