2

我想根据我在 json 中的值隐藏一个 div

例如我有这个{{product.currency}}并且值可以是: £ 或 € 如果值相等 € 我想隐藏这个元素。

4

1 回答 1

5

相当简单,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 参考文档左侧菜单中显示的所有核心指令是非常值得的。

于 2015-01-26T17:49:41.523 回答