我想隐藏div,具体取决于我在json中的值
例如我有 {{product.currency}} ,值可以是:£或€如果值相等€我想要隐藏此元素。
答案 0 :(得分:6)
使用ng-hide
或相反的ng-show
相当简单,或者在页面使用中没有ng-if
<div ng-hide="product.currency =='€'" >
<!-- or -->
<div ng-show="product.currency !='€'" >
<!-- or -->
<div ng-if="product.currency !='€'" >
另一个替代方案,不是优雅或高效的ng-switch
。
值得花一点时间查看API reference docs左侧菜单中显示的所有核心指令。