Karate API 比较 2 个略有不同的 json 结构中的值

发布于 2025-01-10 09:41:03 字数 434 浏览 0 评论 0原文

我需要比较 2 个不同 API 返回的数字,但它们的结构略有不同。有没有办法进行替换以使它们匹配,或者我必须从每个数字中提取单独的数字来验证匹配? 以下是 2 个结构:

"RowTotals":[[66607.6],[68600.0],[65975.0],[119504.5],[58200.0],[72900.0],[113900.0],[74400.0],[302900.0],[449950.0],[168200.0],[113950.0]],

以及

"actualValues":[66607.6,68600.0,65975.0,119504.5,58200.0,72900.0,113900.0,74400.0,302900.0,449950.0,168200.0,113950.0],

处理此问题的最佳方法是什么?

I need to compare the numbers returned by 2 different APIs but their structure is slightly different. Is there a way to do a replace to get them to match or will I have to extract the individual numbers from each to verify the match?
Here are the 2 structures:

"RowTotals":[[66607.6],[68600.0],[65975.0],[119504.5],[58200.0],[72900.0],[113900.0],[74400.0],[302900.0],[449950.0],[168200.0],[113950.0]],

and

"actualValues":[66607.6,68600.0,65975.0,119504.5,58200.0,72900.0,113900.0,74400.0,302900.0,449950.0,168200.0,113950.0],

What is the best way to handle this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅浅淡淡 2025-01-17 09:41:03

花一些时间来理解 JsonPath。这是一个示例:

* def response = { "RowTotals":[[66607.6],[68600.0],[65975.0]] }
* def values = $response.RowTotals[*].*
* match values == [ 66607.6, 68600.0, 65975.0 ]

您可以执行其他类型的高级转换,请阅读文档:https:// /github.com/karatelabs/karate#json-transforms

Take some time to understand JsonPath. Here is one example:

* def response = { "RowTotals":[[66607.6],[68600.0],[65975.0]] }
* def values = $response.RowTotals[*].*
* match values == [ 66607.6, 68600.0, 65975.0 ]

You can do other kinds of advanced transforms, please read the docs: https://github.com/karatelabs/karate#json-transforms

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文