确定 javascript 对象上的所有属性是 null 还是空字符串 [英] Determining if all attributes on a javascript object are null or an empty string

查看:15
本文介绍了确定 javascript 对象上的所有属性是 null 还是空字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

确定 javascript 对象中的所有属性是 null 还是空字符串的最优雅的方法是什么?它应该适用于任意数量的属性.

What is the most elegant way to determine if all attributes in a javascript object are either null or the empty string? It should work for an arbitrary number of attributes.

{'a':null, 'b':''} //should return true for this object
{'a':1, 'b':''} //should return false for this object
{'a':0, 'b':1} //should return false
{'a':'', 'b':''} //should return true

推荐答案

创建一个函数来循环检查:

Create a function to loop and check:

function checkProperties(obj) {
    for (var key in obj) {
        if (obj[key] !== null && obj[key] != "")
            return false;
    }
    return true;
}

var obj = {
    x: null,
    y: "",
    z: 1
}

checkProperties(obj) //returns false

这篇关于确定 javascript 对象上的所有属性是 null 还是空字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆