当前位置:  开发笔记 > 编程语言 > 正文

如何在Retrofit 2(Android)中将JSON OBJECT作为参数发送

如何解决《如何在Retrofit2(Android)中将JSONOBJECT作为参数发送》经验,为你挑选了1个好方法。



1> Vishal Raj..:

您可以将参数作为hashmap或pojo发送,参数将作为JSON对象发送.如:

@POST("user/checkloc")
Call checkLocation(@Body Location location);

这里的位置是pojo对象:

public class Location {
String lat,lng;

    public Location(String lat, String lng) {
        this.lat = lat;
        this.lng = lng;
    }
}

它将作为JSON对象发送参数:

D/OkHttp? --> POST /api/index.php/user/checkloc HTTP/1.1
D/OkHttp?    {"lat":"28.4792293","lng":"77.043042"}

您还可以将参数作为Hashmap发送:

@POST("user/checkloc")
Call checkLocation(@Body HashMap hashMap);

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有