gpt4 book ai didi

angularjs - angularjs 是否将 null 视为 $scope.null?

转载 作者:行者123 更新时间:2023-12-04 22:30:04 24 4
gpt4 key购买 nike

问题示例

<div ng-show="bar !== null">hello</div>

这是在范围内评估为
$scope.bar !== null

或者是这样?
$scope.bar !== $scope.null

请注意,在最后一种情况下, $scope.null 将是未定义的,并且该示例似乎可以正常工作。

奖励:

如果 bar = null 那么就会发生这种情况
// this does not work (shows hello)
<div ng-show="bar !== null">hello</div>

不会给出相同的结果
// this works ok (does not show hello)
<div ng-show="bar != null">hello</div>

为什么会这样?

最佳答案

不,Angular recognizes 表达式中有一些 JS 原语,null 就是其中之一。

关于angularjs - angularjs 是否将 null 视为 $scope.null?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31387397/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com