AngularJS:html特殊字符未显示

前端之家收集整理的这篇文章主要介绍了AngularJS:html特殊字符未显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在我的模型中显示一个包含特殊字符的html表示的字符串.不幸的是,它没有显示出真正的角色,我不知道如何让它做到……

这是代码

<div ng-controller="MyCtrl">
  Hello,{{namea}}!
    <br/>
    &lt;
</div>

<script>
var myApp = angular.module('myApp',[]);

function MyCtrl($scope) {
    $scope.namea = 'Superhero &lt;';
}
</script>

这是输出

Hello,Superhero &lt;! 
<

here is a jsfiddle for that

你可以使用 ng-bind-html-unsafe directive
<div ng-controller="MyCtrl" ng-bind-html-unsafe="'Hello,' + namea">
</div>

查看examples in the docsjsfiddle.

原文链接:https://www.f2er.com/angularjs/141859.html

猜你在找的Angularjs相关文章