AngularJS ng-if具有正确或错误的对象值

时间:2019-02-08 14:48:43

标签: angularjs

不太确定为什么这行不通。我试图隐藏col是driveThru的值为false或等于'N'。

ng-if="location.driveThru === false || location.driveThru === 'N'"

但是=== false无法正常工作,我无法确定原因。

1 个答案:

答案 0 :(得分:1)

如果为,则为布尔更改,

"!location.driveThru' || location.driveThru === 'N'

和===,如果其后跟字符串a,则用引号引起来,

ng-if="location.driveThru === 'false' || location.driveThru === 'N'"