Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.1k views
in Technique[技术] by (71.8m points)

怎么判断对象里面存不存在空值?

例如obj对象,怎么判断a、d是空值,如果是三层对象呢?

var obj = {
 a:'',
 b:1,
 c:{
  d:'',
  f:1
 }
};


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

递归 + 判断,根据自己的逻辑,还可以在判断的地方自己加条件

function checkEmptyKey(obj) {
    let result = [];
    return loop(obj, result);

    function loop(o, r) {
        for (var key in o) {
          if (o.hasOwnProperty(key)) {
            var t = Object.prototype.toString.call(o[key]);
            if (t === "[object Object]") {
              loop(o[key], r);
            } else if (o[key] === "") { // 这里做数值比较判断
                r.push(key);
            }
          }
        }
        return r;
    }
}

// 测试数据
checkEmptyKey({
 a:'',
 b:1,
 c:{
  d:'',
  f:1,
    g: {
        h: "",
        j: 0
    }
  }
}); // ouput: [ "a", "d", "h" ]

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...