访问 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"
        }
      ]
    }
  ]
}

目前您无法按原样访问 Parcels

您需要修改您的树结构,以便访问 Parcels 作为

{
    "JOBS": [
        {
            "Id": "1",
            "type": "open",
            "driver": "Andy",
            "receiver": "Paul",
            "price": "635.50"
        }
    ],
    "PARCELS": [
        {
            "parcelId": "90"
        }
    ]
}

并将其作为 localhost:3000/PARCELS 访问,如 link and described here

中所述