gpt4 book ai didi

javascript - 如何检查 NodeJS 中的 JSON 是否为空?

转载 作者:IT老高 更新时间:2023-10-28 12:47:07 26 4
gpt4 key购买 nike

我有一个函数可以检查请求是否有任何查询,并据此执行不同的操作。目前,我有 if(query) 做别的事情。但是,似乎在没有查询数据时,我最终得到了一个 {} JSON 对象。因此,我需要将 if(query) 替换为 if(query.isEmpty()) 或类似的东西。谁能解释我如何在 NodeJS 中做到这一点? V8 JSON 对象有这种功能吗?

最佳答案

您可以使用以下任一功能:

// This should work in node.js and other ES5 compliant implementations.
function isEmptyObject(obj) {
return !Object.keys(obj).length;
}

// This should work both there and elsewhere.
function isEmptyObject(obj) {
for (var key in obj) {
if (Object.prototype.hasOwnProperty.call(obj, key)) {
return false;
}
}
return true;
}

示例用法:

if (isEmptyObject(query)) {
// There are no queries.
} else {
// There is at least one query,
// or at least the query object is not empty.
}

关于javascript - 如何检查 NodeJS 中的 JSON 是否为空?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11480769/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com