【发布时间】:2018-04-30 02:45:48
【问题描述】:
创建了一个 Mock Json 服务器并能够通过 localhost:3000/JOBS 访问它。 如何访问 URL 中的子“包裹”,例如访问 localhost:3000/JOBS?type=open 之类的打开类型。提前致谢。
我有一个如下的 Json 对象数组:
{
"JOBS": [
{
"Id": "1",
"type": "open",
"driver": "Andy",
"receiver": "Paul",
"price": "635.50",
"Parcels": [
{
"parcelId": "90"
}
]
}
]
}
【问题讨论】:
标签: json react-native children