本文介绍了如何在改进中使用HashMap发布数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
您可以解释如何使用 retrofit2 中的 hashmap 发布数据吗?
这是我发布的内容。pre $ @ $ $ $ b $ @ $($ getProfile
呼叫< YourResponseObject> getProfile(@FieldMap HashMap< String,String> data);
和HashMap
HashMap< String,String> map = new HashMap<>();
map.put(token,yourtoken);
map.put(yourvariable,yourvariable);
Can you please explain how to post data using hashmap in retrofit2 ?
解决方案
This is what I post
@FormUrlEncoded
@POST("getProfile")
Call<YourResponseObject> getProfile(@FieldMap HashMap<String, String> data);
And the HashMap
HashMap<String, String> map = new HashMap<>();
map.put("token", "yourtoken");
map.put("yourvariable", "yourvariable");
这篇关于如何在改进中使用HashMap发布数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!