给定带有一些 FontAwesome 图标的文本列表,我的控制器需要将其传递给模板,并将每个文本呈现为按钮。
示例文本:
'<i class="fa fa-hourglass fa-fw">Postpone'
我的代码:
<button ng-repeat="text in texts" type="button">[[text]]</button>
但是它不会按预期工作。
[[text]]
将转义任何 htmlng-bind-html
插入文本后将无法调整按钮大小
这里还能做什么?