用Object.keys判断是否为空对象

let json = {};

let arr = Object.keys(json);

if(arr.length == 0) {

    alert('json是空对象');

}

你可能感兴趣的:(用Object.keys判断是否为空对象)