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

时间:2016-01-02 10:42:21

标签: android retrofit retrofit2

@GET
Call<List<User>> getMyFriends(@Header(GlobalDeclarationsRetrofit.HEADER_AUTHORIZATION) String lang, @Url String url, "Need to send a json object here");

应该非常感谢任何帮助..

1 个答案:

答案 0 :(得分:5)

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

@POST("user/checkloc")
Call<CheckLocation> 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> checkLocation(@Body HashMap<String, String> hashMap);