Karate API 比较 2 个略有不同的 json 结构中的值
我需要比较 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
花一些时间来理解 JsonPath。这是一个示例:
您可以执行其他类型的高级转换,请阅读文档:https:// /github.com/karatelabs/karate#json-transforms
Take some time to understand JsonPath. Here is one example:
You can do other kinds of advanced transforms, please read the docs: https://github.com/karatelabs/karate#json-transforms