Android齐射JsonObjectRequest不发布参数

时间:2019-08-03 16:10:22

标签: android android-volley jsonobjectrequest

我使用以下代码:

Map<String, String> params = new HashMap();
params.put("first_param", "1");

JSONObject parameters = new JSONObject(params);

JsonObjectRequest jsonRequest = new JsonObjectRequest(Request.Method.POST, "url", parameters, new Response.Listener<JSONObject>() {
    @Override
    public void onResponse(JSONObject response) {
    try {
        //Log.i("errorCheck", "RE: "+response);
    } catch (JSONException e) {
        e.printStackTrace();
    }
}
        }, new Response.ErrorListener() {

            @Override
            public void onErrorResponse(VolleyError error) {
                error.printStackTrace();
            }
        });

        Volley.newRequestQueue(this).add(jsonRequest);

还有我的php代码服务器:

file_put_contents('1.txt', $_POST['first_param']);

但是没有收到任何$_POST参数,只是$_GET可以正常工作

我如何通过截击发布参数?

0 个答案:

没有答案