我在Postman中进行了一个测试,可以在其中验证数组中的值。我遇到的问题是,返回的值可以是随机的。这就是我正在验证的json的样子。
[
{
"id": "7776",
"revision": {
"revisionId": "7780",
"createdByUserId": "Lakare12",
"createdDateTime": "2020-07-29T16:49:34.000+05:30"
},
"identifiers": [
{
"system": "urn:oid:1.2.752.129.2.1.4.1",
"value": "CDE473Child1",
"use": "primary",
"displayValue": null
}
],
"name": "AA Child 01",
"active": true,
"hasChildren": false,
"parentUnitId": "7768"
},
{
"id": "7783",
"revision": {
"revisionId": "7783",
"createdByUserId": "Lakare12",
"createdDateTime": "2020-07-30T08:47:40.000+05:30"
},
"identifiers": [
{
"system": "urn:oid:1.2.752.129.2.1.4.1",
"value": "CDE473Child3",
"use": "primary",
"displayValue": null
}
],
"name": "BB main Child 03",
"active": true,
"hasChildren": false,
"parentUnitId": "7768"
}
]
我需要测试该名称是否包含BB main Child 03
您可以迭代数组并检查每个数组元素中的名称。