PHP中的$ _POST没有使用Volley库JsonObjectRequest(方法POST)填充

时间:2017-08-24 15:26:45

标签: php android json android-volley

让我们从我正在使用的代码开始,我已经尝试了每种可能的不同方式来制作“params”。我已经将它用作Jash格式的HashMap,也用作字符串。我还尝试通过创建一个hashmap并返回它来@Override getParams()方法。没有什么可行的。

这是我调用JsonObjectRequest的函数。

<libtorrent extracted directory>\bindings\python

网址和其他一切都很好,我已经检查但是我无法理解为什么GET或POST方法都不起作用,因为我已经尝试了两种方法,但我没有取得任何成功。我的PHP代码包括:

 private void sendJsonObjReq() {

    showProgressDialog();
    Map<String, String> para = new HashMap<>();

    para.put("Condicao", "dea");
    para.put("Field", "1550");
    JSONObject jason = new JSONObject(para);

    String params = jason.toString();
    textView.setText(params);

        JsonObjectRequest jsonReq = new JsonObjectRequest(JsonRequest.Method.POST,
                url_cond1, params,
                new Response.Listener<JSONObject>() {

                    @Override
                    public void onResponse(JSONObject response) {
                        Log.d(AppController.TAG, response.toString());
                        textView.setText(response.toString());

                    /*try {
                        int u = response.getInt("sucess");
                        if(u == 1){

                            JSONArray json = response.optJSONArray("Type");
                            if(json != null) {
                                MakeListHashMap(json);
                            }else{
                                textView.setText("Wrong Parameters");
                            }
                        }else{textView.setText("success is 0");}
                    }catch(JSONException e){
                        Log.e("Error:", e.getMessage());
                        textView.setText("nothing here");
                    }*/
                        hideProgressDialog();
                    }
                }, new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                VolleyLog.d(AppController.TAG, "Error:" + error.getMessage());
                showProgressDialog();
            }
        });
        //Add to request queue
    AppController.getInstance().addToRequestQueue(jsonReq, tag_json_obj);

}

我试过解码它而不是解码它,我真的不知所措。我认为它可能是服务器的问题,但使用App“邮差”我可以发送GET和POST,响应是我想要的Json数组。

如果我发送 key1 = Condicao =&gt;命名= DEA; key2 = Field =&gt;名称= 1550;

我得到了结果

<?php
    $response = array();
//$oi = json_decode($_POST);
//$response["Condicao"] = $_GET["Condicao"];
//$response["Field"] = $_GET["Field"];
    $response["Condicao"] = $_POST["Condicao"];
    $response["Field"] = $_POST["Field"];

    $response['sucess'] = 1;
    $response['other'] = "test";

    echo json_encode($response);
?>

编辑:解决方案是:

{
     "Condicao": "dea",
     "Field": "1550",
     "sucess": 1,
     "other": "test"
}

1 个答案:

答案 0 :(得分:2)

1。)传递你的json对象而不是字符串

JsonObjectRequest jsonReq = new JsonObjectRequest(JsonRequest.Method.POST,
                url_cond1, jason ,
               //          ^^^^
                new Response.Listener<JSONObject>() {

2。)在你的php中接收它

<?php
    $response   = array();
    // receive your json object
    $jasonarray = json_decode(file_get_contents('php://input'),true);
    $response["Condicao"] = $jasonarray["Condicao"];
    $response["Field"]    = $jasonarray["Field"];
    $response['sucess']   = 1;
    $response['other']    = "test";

    echo json_encode($response);
?>