具有html输出的角度三元运算符

时间:2016-07-19 09:05:53

标签: javascript angularjs

是否可以将三元运算符的输出呈现为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);
    }
}])

1 个答案:

答案 0 :(得分:3)

是的,请使用ng-bind-html:

<span ng-bind-html=" your_condition ? 'html_if_true' : 'html_if_false' "></span>

根据您的要求更换值。