0
我想要郵政JSON
在以下格式和GET響應。如何發佈JSON
提到的JSON:
{
"success": true,
"data": {
"id": "234576"
"name": "string"
}
}
我想要郵政JSON
在以下格式和GET響應。如何發佈JSON
提到的JSON:
{
"success": true,
"data": {
"id": "234576"
"name": "string"
}
}
創建像2個JSON對象:
JSONObject parent = new JSONObject();
JSONObject child = new JSONObject();
在子對象,提出:
parent.put("success", true);
child.put("id", "234567");
child.put("name", "string");
parent.put("data", child);
,並簡單地使用此父對象調用UR服務。