- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我总是不确定哪个是正确的以及该使用哪个。
通常我会进行(obj == null)
检查。我认为最好直接问。
我应该使用以下哪一项:
if (obj == null) {
alert('obj is null');
}
或者
if (obj == null || obj == 'undefined') {
alert('obj is null or undefined');
}
或者
if (obj == null || obj == undefined) {
alert('obj is null or undefined');
}
或者
if (obj == null || obj === 'undefined') {
alert('obj is null or undefined');
}
哪一个更好?我们真的需要检查未定义吗?
最佳答案
就这么做
if (obj == null) {
这将检查 null
和 undefined
。
对于困惑的反对者来说,使用 == null
将同时检查 null
和 undefined
,但不会检查其他“错误”值。
typeof foo === "undefined"
语法实际上导致的错误比它修复的错误还要多。像这些...
typeof foo === undefined // common bug
foo === "undefined" // common bug
typeof foo === "undefnied" // common bug
这些是非常常见的错误,也是不使用此语法的原因。
<小时/>以下是初学者被告知使用该语法的情况...
未定义
可能已被重新定义
您的变量可能未声明,导致ReferenceError
以下是这些都不是很好的理由
全局未定义
无法在现代浏览器中重新定义,因此这不是问题。即使它确实被重新定义,也会出现严重错误,并且需要以任何方式进行修复。如果您隐藏问题,您将永远无法解决它。
如果开发人员尝试使用未声明的本地变量,则意味着代码中存在错误,并且ReferenceError应被视为< em>理想的警告,而不是隐藏的东西。
如果开发人员尝试使用事先无法得知的未声明的全局变量,则更安全的做法是检查该变量是否为窗口上的属性
对象而不是使用不安全的 typeof foo === "undefined"
语法。
是的,null
和 undefined
之间存在类型区别,因此都需要进行检查。当类型不匹配时,==
运算符执行类型强制算法。这就是为什么您可以使用 == null
来检查两者。
关于javascript - obj == 'undefined' 或 obj === 'undefined' 或 obj == null 或全部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19253991/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!