无法检测到从Android发送的PHP中的Post参数

时间:2019-04-14 06:45:21

标签: php android postgresql android-volley

我正在尝试通过Android应用程序填充Postgres数据库。我正在使用Volley和Php将数据发送到Postgres数据库。 Post请求可通过浏览器很好地工作,即填充数据库,可通过chrome的Postman扩展名进行检查。但是,当我通过android进行操作时,我无法这样做。我也没有得到任何错误。

请在我将x和y post参数发送到URL的地方找到以下代码。

submitbutton.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {

        StringRequest stringRequest = new StringRequest(Request.Method.POST, URL, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {

                builder.setTitle("Server Response");
                builder.setMessage("Response: "+response);
                builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        Toast.makeText(Soil_Info.this, "Clear fields here", Toast.LENGTH_SHORT).show();
                    }
                });

                AlertDialog alertDialog =builder.create();
                alertDialog.show();
                Toast.makeText(Soil_Info.this, "Successfull", Toast.LENGTH_SHORT).show();

            }
        }

                , new Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {

                Toast.makeText(Soil_Info.this, "Error Occured", Toast.LENGTH_SHORT).show();
                error.printStackTrace();

            }
        }){

            @Override
            protected Map<String, String> getParams() throws AuthFailureError {

                Map <String,String> params=new HashMap<>();

                params.put("x", "aisha");
                params.put("y", "shah");
                return params;
            }
        };


        MySingleton.getInstance(Soil_Info.this).addTorequestque(stringRequest);

        stringRequest.setRetryPolicy(new RetryPolicy() {
            @Override
            public int getCurrentTimeout() {
                return 50000;
            }

            @Override
            public int getCurrentRetryCount() {
                return 50000;
            }

            @Override
            public void retry(VolleyError error) throws VolleyError {
            }
        });

下面是PHP代码

    <?php
require "connection.php";


if(isset($_REQUEST["x"]) && isset($_REQUEST["y"]))
{
    $names = $_REQUEST["x"];
    $surnames = $_REQUEST["y"];


    // echo $names ;
    // echo $surnames ;

    $query = "INSERT INTO emp (first, last) VALUES ('$names','$surnames')";
    echo $query;

    $result = pg_query($conn, $query);

    if (!$result) {
        die('An error occurred during query.');
    } else {
      echo ".....Successfull.....";
    }   
   }
  else
   {
    $response["success"] = 0;
    $response["message"] = "Required field(s) is missing";

    // echoing JSON response
    echo json_encode($response);
  }



pg_close($conn); 

?>

字符串URL =“ http://192.168.1.107/test.php”;

1 个答案:

答案 0 :(得分:0)

您正在虚拟主机中运行项目,您的浏览器,邮递员等应用程序可以访问该主机。但是您的电话无法进行有效的请求。

您可以做的是:

  1. 在真实服务器上部署服务器项目,这是很多工作,但值得。然后,您可以通过真实的IP地址访问您的api

  2. 用用户模拟器代替您的手机

  3. 使您的lan可以访问您的本地主机,以便您可以通过电话访问它。查看this答案以了解详细信息