我最近在用angular.js重构我上学期的大程。其中一个angular插值表达式为HTML,初始表达式是这样的:
<p>{{content}}</p>
但是其中的HTML没有被渲染,这导致呈现的效果是这样的:
我们可以看到,作为文章主体的HTML没有被渲染。这是因为angular插值表达式默认会表达式内容进行转义。这么做是为了:防止html注入攻击。 为了解决这个问题,需要用到新的指令:
<p ng-bind-html="content"></p>
当然我们需要导入angular.js中其中一个文件
<script type="text/javascript" src="../lib/angularjs/angular-sanitize.min.js"></script>
另外需要增加新的依赖模块:ngSanitize
var myApp=angular.module('myApp',['ngSanitize']);
最终呈现的结果:原文链接:https://www.f2er.com/angularjs/147533.html