gpt4 book ai didi

json - 如何在 Karate 中将 Json 对象转换为 Json 数组?

转载 作者:行者123 更新时间:2023-11-28 20:34:42 25 4
gpt4 key购买 nike

我想在 Karate 中将 Json 对象 转换为 Json 数组 以使用'匹配每个' 函数。当我将每个函数与 Json 对象匹配时,我遇到了('match each' failed, not a json array) 错误。

这是我的 Json 对象:

{
{ "a": "q"
"b": "w",
"c": "t"
},
{ "a": "x"
"b": "y",
"c": "z"
}
}

这是我需要的:

  [  
{
{ "a": "q"
"b": "w",
"c": "t"
},
{ "a": "x"
"b": "y",
"c": "z"
}
}
]

最佳答案

试试这个方法,使用嵌入式表达式:https://github.com/intuit/karate#embedded-expressions

* def foo = { a: 1 }
* def list = [ '#(foo)' ]
* match each list == foo

关于json - 如何在 Karate 中将 Json 对象转换为 Json 数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58991970/

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