gpt4 book ai didi

javascript - 如何检查参数是否存在于 node.js 的查询字符串中

转载 作者:行者123 更新时间:2023-11-30 13:05:34 25 4
gpt4 key购买 nike

如何验证参数是否存在于查询字符串中或不存在于 node.js 中?

我是这样验证的

if(prm1 == null)
return error

但实际上在console.log(prm1)说未定义..

如何准确验证这一点?

最佳答案

如果参数不在您的查询字符串中,则返回为 undefined。该参数不会返回 null,因为它没有被初始化。

试试这个:

if(typeof prm1 != 'undefined')
return "error";

关于javascript - 如何检查参数是否存在于 node.js 的查询字符串中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15834336/

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