确定 javascript 对象上的所有属性是 null 还是空字符串

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

本文介绍了确定 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 还是空字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:确定 javascript 对象上的所有属性是 null 还是空字符串

基础教程推荐