是否可以将三元运算符的输出呈现为html?
{{ boolA ? 'Some text' : '<i class=\"fa fa-check\"></i>' }}
还尝试修改来自previous question的内联if / else指令,但无法使其工作。
.filter('iif', ['$sce', function ($sce) {
return function (input, trueValue, falseValue) {
return $sce.trustAs('html', input ? trueValue : falseValue);
}
}])
答案 0 :(得分:3)
是的,请使用ng-bind-html:
<span ng-bind-html=" your_condition ? 'html_if_true' : 'html_if_false' "></span>
根据您的要求更换值。