如何使用Android Vollley用一个数组制作POST参数?

时间:2019-06-09 18:30:59

标签: android android-volley

我需要将此Arrray与此JSON一起使用POST

$datos = array(
 'apikey'=>'123123',
 'usuario'=> array (
    'email'=>'demo@mail.com',
    'pass'=>'1256', // 
 ),
);

我正在尝试类似这样的事情:     地图postParams = new HashMap();

postParams.put("apikey", "123123");
JSONObject aver = new JSONObject();

 try {
  aver.put("email",email);
  aver.put("pass",password);
  } catch (JSONException e) {
  e.printStackTrace();
  }
  postParams.put ("usuario", aver);

我想将这种Params传递到截击的请求中,如下所示:

 JSONObject parameters = new JSONObject(postParams);
     JsonObjectRequest customRequest = new JsonObjectRequest 
     (Request.Method.POST, URL_LOGIN,parameters,
     new Response.Listener<JSONObject>() {

0 个答案:

没有答案