请协助从邮递员的 JSON 响应中获取嵌套元素的属性类型。以下是我在 POST 后的回复。
{
"MyList": [
[
{
"id": 1,
"name": "Test"
}
]
]
}
如果它们是数字和字符串类型,我想检查名称和 id 属性。以下是我的代码,但出现错误:无法读取属性 '0' of undefined
.
pm.test("Check schema and datatype", () =>{
var jsonData = pm.response.json();
pm.expect(typeof(jsonData[0].id)).to.eql('number');
pm.expect(typeof(jsonData[0].name)).to.eql('string');
})