请参阅下面给出的代码:
<div ng-app="myApp" ng-controller="myCtrl">
<p ng-bind-html="myText"></p>
</div>
<script>
var app = angular.module("myApp", ['ngSanitize']);
app.controller("myCtrl", function($scope) {
$scope.myText = "My name is: <h1>John Doe</h1>";
});
</script>
输出为:我的名字是: John Doe
如何显示原文。例如:My Name is : <h1>John Doe</h1>
我想在页面上显示HTML标记。
答案 0 :(得分:2)
使用ng-bind
代替ng-bind-html
<div ng-app="myApp" ng-controller="myCtrl">
<p ng-bind="myText"></p>
</div>
或者只是
<p>{{myText}}</p>
答案 1 :(得分:2)
答案 2 :(得分:2)
首先使用$sce
创建过滤器:
app.filter("html", ['$sce', function($sce) {
return function(input){
return $sce.trustAsHtml(input);
}
}]);
然后:
<div ng-bind-html="myText | html"></div>
答案 3 :(得分:1)
我认为你应该像这样使用
控制器中的
$scope.mytext="<h1>John Doe</h1>"
在你的html页面
<p ng-bind-html="myText"></p>