我有3种文档类型。
如果表达式是{{documenttype}}
= document,则创建文档图标。
如果表达式是{{documenttype}}
=文件夹而不是创建文件夹图标。
如果表达式是{{documenttype}}
= documentplace而不是创建地址图标。
我非常清楚地知道在PHP中这样做了,但是有点过分了。
答案 0 :(得分:0)
您可以使用ng-switch
来完成这项工作。它将评估on
中的表达式,并根据值显示div
:
<div ng-switch on="documenttype">
<div ng-switch-when="document">
<img src="document.png"/>
</div>
<div ng-switch-when="folder">
<img src="folder.png"/>
</div>
<div ng-switch-when="documentplace">
<img src="documentplace.png"/>
</div>
</div>