2

嗨,我正在使用角度,我想在我的 ng-bind-html-unsafe 中做一个表达式,以便它可以在两个文本之间进行选择来显示。这是表达式的正确语法吗?

<div  ng-bind-html-unsafe="{{ 0 && text || text2}}"></div>

这是一个显示我的问题的jsfiddle 。

4

1 回答 1

2

尝试不使用大括号:

  <div  ng-bind-html-unsafe=" 0 && text || text2"></div>

输出:

HELLO THERE2

为了

<div  ng-bind-html-unsafe=" 1 && text || text2"></div>

输出

 HELLO THERE

Fiddle

作为旁注,ng-bind-html-unsafe已从较新版本中删除。将来可能会导致错误

于 2013-10-02T20:04:14.403 回答