2

我试图在值为 null 或空数组时执行 ng-hide(在 Firebug 中,这显示为 [])。

我可以通过以下方式执行 null:

ng-hide="myData.Address == null"

但是,当我尝试时:

ng-hide="myData.Address == null || myData.Address == []"

该值仍然出现。

4

3 回答 3

10

尝试这个:

ng-hide="myData.Address == null || myData.Address.length == 0"
于 2014-08-27T08:58:25.247 回答
5

null 和 [] 都是假的,更短更干净的方式

ng-show="myData.Address"
于 2014-08-27T08:59:50.517 回答
3
ng-hide="!myData.Address || !myData.Address.length"
于 2014-08-27T08:58:16.717 回答