gpt4 book ai didi

javascript - postman 大号问题

转载 作者:行者123 更新时间:2023-12-04 13:29:07 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Postman rounding off BigInt

(2 个回答)


9 个月前关闭。




我需要将下面的 EventTypeId 存储在 Postman 的全局变量中,以便在以后的测试中使用:

{
"EventTypeId": 8565382127936807869,
"ValueName": "Engine Load Calculated",
"FormatType": "Value",
"DisplayUnits": "%",
"EventType": "Custom",
"Description": "Test Roja"
}
由于 JS 限制,该值存储为 8565382127936808000,与原始值相比,它失败了。
有什么办法可以保存吗?

最佳答案

str =  pm.response.text().replace(/[:|: *](\d+)/g,'"$1"');

console.info(str)

console.log(JSON.parse(str).EventTypeId)

pm.globals.set("value",JSON.parse(str).EventTypeId)
在这里,我们将该数字括在双引号中,然后解析为 json,以便您获得正确的值,即字符串

关于javascript - postman 大号问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66285276/

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