我想以以下格式发布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);
,只需使用此父对象调用您的服务。