我有一个包含HTML实体的字符串,需要在控制器级别对其进行解码才能在输入中正确显示。在控制器级别上是否有等效的ng-bind-html?
$scope.create.name = 'Tobias's team from "Prague"';
<input type="text" ng-model="create.name" />
答案 0 :(得分:6)
我认为您需要使用用于解析html的ngSanitize。
<script src="angular.js">
<script src="angular-sanitize.js">
然后在您的应用中包含清理模块
angular.module('app', ['ngSanitize']);