如果我使用带有常规的函数ng-bind
,一切似乎都很好。但如果我使用ng-bind-html
,我会收到无限摘要错误。
=== View ===
1. <span ng-bind="test()">
2. <span ng-bind-html="test()">
=== Controller ===
1. $scope.test = function() {
return 1;
}
2. myapp.controller('myapp', function($scope, $sce) {
$scope.test = function() {
return $sce.trustAsHtml('<input></input>');
}
});
知道这里发生了什么吗?该视图确实渲染了输入,但抛出了无限错误摘要错误。该文档也不是很有帮助。