ngBindHtml不适用于ngSanitize

时间:2014-11-04 10:54:41

标签: javascript angularjs

我是Angular.js的新手,所以我知道这是一个非常基本的问题,但这里看起来只是找到angular.js问题答案的地方。

<!doctype html>
<html ng-app="example">
<head>
<script src="angular.min.js"></script>
<script src="angular.sanitize.min.js"></script>
<script>
var example = angular.module("example", ['ngSanitize']);
example.controller("exampleCtrl", function($scope){
    $scope.appTitle = "<b>Example Angular App</b>";
});
</script>
</head>
<body ng-controller="exampleCtrl">
    <h1 ng-bind-html="appTitle"></h1>
</body>
</html>

我遵循Rodrigo Branas(Angular.js Essentials)的书。他只是使用“停车”字作为变量的名称,而不是“示例”。

我不知道是否有angular.js等更新?

1 个答案:

答案 0 :(得分:0)

显示$ scope use中的项目:

<h1>{{ appTitle }}</h1>

结帐这个小提琴:http://jsfiddle.net/zn7osxt6/