gpt4 book ai didi

javascript - php isset() 等效于 javascript

转载 作者:数据小太阳 更新时间:2023-10-29 05:43:00 25 4
gpt4 key购买 nike

我正在寻找与 php 函数 isset() 等效的 javascript。我已经尝试过此处描述的方法 JavaScript isset() equivalent但是在 Firebug 中,错误出现了

data.del is undefined                          //Firebug warning/error
if(typeof data.del[0].node != 'undefined') { // codes in my js file

在某些情况下

data is null                                  //Firebug warning/error
if(typeof data.storyLine != 'undefined') { // codes in my js file

逻辑似乎可行,但我想知道为什么会出现错误??

基本上,我想检查 data.del[0].nodedata.storyLine 是否已设置??

最佳答案

isset() 使 two checks : 首先如果变量已定义,其次如果它为空。

您必须同时检查“未定义”大小写和空大小写,例如:

if (typeof data !== 'undefined' && data !== null)

关于javascript - php isset() 等效于 javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5436953/

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