美文网首页
判断值是否为空

判断值是否为空

作者: 小马哒哒哒哒哒哒 | 来源:发表于2022-07-08 17:23 被阅读0次
    if ((item === '' || item === undefined || item === null) || (JSON.stringify(item) === '{}' || JSON.stringify(item) === '[]'))
    
    if ((item === undefined || item === null || item === "") || (item.constructor === Array || item.constructor === Object) && Object.keys(item).length === 0)
    

    相关文章

      网友评论

          本文标题:判断值是否为空

          本文链接:https://www.haomeiwen.com/subject/znhibrtx.html