如何 post JSON
How to post JSON
我想 POST JSON
以下格式和 GET 响应。
提到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);
并使用此父对象简单地调用您的服务。
我想 POST JSON
以下格式和 GET 响应。
提到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);
并使用此父对象简单地调用您的服务。