访问 Json 对象数组中的子对象
Accessing Children in Json Array of Objects
创建了一个模拟 Json 服务器并能够通过 localhost:3000/JOBS 访问它。
如何访问 URL 中的子项 "Parcels",就像访问 localhost:3000/JOBS 这样的打开类型?type=open。提前致谢。
我有一个 Json 对象数组,如下所示:
{
"JOBS": [
{
"Id": "1",
"type": "open",
"driver": "Andy",
"receiver": "Paul",
"price": "635.50",
"Parcels": [
{
"parcelId": "90"
}
]
}
]
}
创建了一个模拟 Json 服务器并能够通过 localhost:3000/JOBS 访问它。 如何访问 URL 中的子项 "Parcels",就像访问 localhost:3000/JOBS 这样的打开类型?type=open。提前致谢。
我有一个 Json 对象数组,如下所示:
{
"JOBS": [
{
"Id": "1",
"type": "open",
"driver": "Andy",
"receiver": "Paul",
"price": "635.50",
"Parcels": [
{
"parcelId": "90"
}
]
}
]
}