gpt4 book ai didi

node.js - 如何在 postman 中发送未定义的值?

转载 作者:行者123 更新时间:2023-12-03 07:59:00 24 4
gpt4 key购买 nike

有没有办法在 postman 中发送这样的东西?

{
"a": [undefined, {"b":"ball", "c":"cat"}]
}

postman 在未定义下给出了红色下划线。如果我使用预请求脚本 pm.variables.set('undefinedVariable', undefined); 并使用它,那么我的代码会给出此错误

{
"statusCode": 400,
"error": "Bad Request",
"message": "Invalid request payload JSON format"
}

最佳答案

它与node.js和postman无关。 undefined不是有效的 json 值,即使它在 javascript 中有效。您也许能够使用null相反

https://stackoverflow.com/a/14946821/6785908

  • undefined is not a valid JSON value, even though it is valid in javascript.

    From the official JSONstandard(ECMA-404, Section 5):

    A JSON value can be an object, array, number, string, true, false, or null.

关于node.js - 如何在 postman 中发送未定义的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74993906/

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