我从服务中获得了一个带有角度内容的 html,内容是这样的
<div>{{ @event.dateBegin | stringToDate }}</div>
该服务类似于
$scope.setContext = function() {
$http.get(service).success(function(response) {
$scope.content = response;
});
内容 div 是
<div class="span9" ng-bind-html-unsafe="content"></div>
结果我得到了正确的 html formmed div,但是 {{ }} 部分不起作用,我同意 angular-sanitize 但也不起作用