data={ "request": { "type": "event_and_offer", "devicetype": "A" }, "requestinfo": { "value": "offer" } }
如何从排球plz帮助发布此请求
JsonObjectRequest jsonObjReq = new JsonObjectRequest( Request.Method.POST,url, null , new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { Log.d(TAG, response.toString()); msgResponse.setText(response.toString()); hideProgressDialog(); } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { VolleyLog.d(TAG, "Error: " + error.getMessage()); hideProgressDialog(); } }) { /** * Passing some request headers * */ @Override public Map<String, String> getHeaders() throws AuthFailureError { HashMap<String, String> headers = new HashMap<String, String>(); headers.put("Content-Type", "application/x-www-form-urlencoded"); return headers; }
js引用了我的jsson对象……我使我的jsson像这样.....
JSONObject jsonobject_one = new JSONObject(); try { jsonobject_one.put("type", "event_and_offer"); jsonobject_one.put("devicetype", "I"); JSONObject jsonobject_TWO = new JSONObject(); jsonobject_TWO.put("value", "event"); jsonobject = new JSONObject(); jsonobject.put("requestinfo", jsonobject_TWO); jsonobject.put("request", jsonobject_one); js = new JSONObject(); js.put("data", jsonobject.toString()); Log.e("created jsson", "" + js);
但是它没有响应值请怎么做
首先你的json数据:
JSONObject js = new JSONObject(); try { JSONObject jsonobject_one = new JSONObject(); jsonobject_one.put("type", "event_and_offer"); jsonobject_one.put("devicetype", "I"); JSONObject jsonobject_TWO = new JSONObject(); jsonobject_TWO.put("value", "event"); JSONObject jsonobject = new JSONObject(); jsonobject.put("requestinfo", jsonobject_TWO); jsonobject.put("request", jsonobject_one); js.put("data", jsonobject.toString()); }catch (JSONException e) { e.printStackTrace(); }
然后您的json请求:
JsonObjectRequest jsonObjReq = new JsonObjectRequest( Request.Method.POST,url, js, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { Log.d(TAG, response.toString()); msgResponse.setText(response.toString()); hideProgressDialog(); } }, new Response.ErrorListener() { @Override public void onErrorResponse(VolleyError error) { VolleyLog.d(TAG, "Error: " + error.getMessage()); hideProgressDialog(); } }) { /** * Passing some request headers * */ @Override public Map<String, String> getHeaders() throws AuthFailureError { HashMap<String, String> headers = new HashMap<String, String>(); headers.put("Content-Type", "application/json; charset=utf-8"); return headers; }
注意 标题
如果您想在localhost中进行测试,请使用以下代码并设置您的url以连接您的localhost服务器和ip地址:下面的代码将您的所有请求都放在一个文本文件中,我尝试了一下,即可
<?php file_put_contents('test.txt', file_get_contents('php://input')); ?>