在控制器中
$scope.html = $sce.trustAsHtml('This is my html');
$scope.showpopup = function(scopVar,data){
console.log(data);
}
在模板中:
<h2 ng-click ="showpopup('html',html)" ng-bind-html="html" ></h2>
我想在“showpopup”函数中使用html范围的值(即:这是我的html)。当我控制它时,它会像这样打印
This is my html {$$unwrapTrustedValue=function(), valueOf=function(), toString=function()}
那么我怎样才能得到实际值(即这是我的html)?
答案 0 :(得分:2)
console.log($sce.getTrustedHtml(data));
找到文档