判断是否为空对空对象
//方法一
if (Object.keys(res.data).length == 0){
console.log("为空对象")
}else{
console.log("不为空对象")
}
//方法二
if ((JSON.stringify(res.data) == "{}")){
console.log("为空对象1")
}else{
console.log("不为空对象1")
}
//方法三
var obj={}
var a = function() {
for(var key in obj) {
return false;
}
return true;
}
console.log(a())//true