Volley does not call getParams for my custom request?

前端 未结 3 1067
不知归路
不知归路 2020-12-15 13:07

Please, does Volley automatically add my GET params to the URL? For me it\'s not working so and also when looking into sources, I just cant find any call of the getParams me

3条回答
  •  清歌不尽
    2020-12-15 13:52

    As for Itai Hanski answer, this is one example to implement that:

     for(String key: params.keySet()) {
       url += "&"+key+"="+params.get(key);
     }
    

提交回复
热议问题