我如何使用 json 路径获取 name=status ...这里的问题是 key=2 是随机数,,, 是他们跳过这些随机并读取名称的任何方式
我放心使用,这是对 GET 请求的示例响应
回复
{
"error": false,
"message": "",
"data": {
"2": {
"name": "No Status",
"protected": "1",
"id": "1",
"temporal_start": "0",
"temporal_end": "2147483647"
},
"3": {
"name": "Started",
"protected": "1",
"id": "2",
"temporal_start": "0",
"temporal_end": "2147483647"
},
}
}
我的请求代码是
given()
.param("error", "false")
.when()
.get(URI)
.then()
.body("data.2.name", startsWith(No))