gpt4 book ai didi

javascript - 如何检查查询字符串是否在 Express.js/Node.js 中有值?

转载 作者:IT老高 更新时间:2023-10-28 23:22:46 29 4
gpt4 key购买 nike

如何检查传递给 Express.js 应用程序的查询字符串是否包含任何值?如果我的 API URL 可能是:http://example.com/api/objectshttp://example.com/api/objects?name=itemName,哪些条件语句可以确定我正在处理的内容?

我当前的代码如下,它总是评估为“应该没有字符串”选项。

if (req.query !== {}) {
console.log('should have no query string');
}
else {
console.log('should have query string');
}

最佳答案

您需要做的就是检查 Object 中键的长度,像这样,

Object.keys(req.query).length === 0


旁注:您以错误的方式暗示 if-else,

if (req.query !== {})     // this will run when your req.query is 'NOT EMPTY', i.e it has some query string.

关于javascript - 如何检查查询字符串是否在 Express.js/Node.js 中有值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26292267/

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