【Android】Retrofit网络请求参数注解,@Path、@Query、@QueryMap.

【Android】Retrofit网络请求参数注解,@Path、@Query、@QueryMap.,第1张

概述对Retrofit已经使用了一点时间了,是时候归纳一下各种网络请求的service了。下面分为GET、POST、DELETE还有PUT的请求,说明@Path、@Query、@QueryMap、@Body、@Field的用法。初始化RetrofitStringBASE_URL="http://102.10.10.132/api/";Retrofitretrofit=newRetrofit.Buil

对Retrofit已经使用了一点时间了,是时候归纳一下各种网络请求的service了。

下面分为GET、POST、DELETE还有PUT的请求,说明@Path、@query、@queryMap、@Body、@FIEld的用法。

@H_301_4@初始化Retrofit
String BASE_URL = "http://102.10.10.132/API/";Retrofit retrofit = new Retrofit.Builder()         .baseUrl(BASE_URL)        .build();
GET样式1(一个简单的get请求)

http://102.10.10.132/api/News

    @GET("News")    Call<NewsBean> getItem();
样式2(URL中有参数

http://102.10.10.132/api/News/1
http://102.10.10.132/api/News/{资讯ID}

    @GET("News/{newsID}")    Call<NewsBean> getItem(@Path("newsID") String newsID);


http://102.10.10.132/api/News/1/类型1
http://102.10.10.132/api/News/{资讯ID}/{类型}

    @GET("News/{newsID}/{type}")    Call<NewsBean> getItem(@Path("newsID") String newsID, @Path("type") String type);
样式3(参数在URL问号之后)

http://102.10.10.132/api/News?newsId=1
http://102.10.10.132/api/News?newsId={资讯ID}

    @GET("News")    Call<NewsBean> getItem(@query("newsID") String newsID);


http://102.10.10.132/api/News?newsId=1&type=类型1
http://102.10.10.132/api/News?newsId={资讯ID}&type={类型}

    @GET("News")    Call<NewsBean> getItem(@query("newsID") String newsID, @query("type") String type);
样式4(多个参数在URL问号之后,且个数不确定)

http://102.10.10.132/api/News?newsId=1&type=类型1...
http://102.10.10.132/api/News?newsId={资讯ID}&type={类型}...

    @GET("News")    Call<NewsBean> getItem(@queryMap Map<String, String> map);

也可以

    @GET("News")    Call<NewsBean> getItem(              @query("newsID") String newsID,              @queryMap Map<String, String> map);
POST样式1(需要补全URL,post的数据只有一条reason)

http://102.10.10.132/api/Comments/1
http://102.10.10.132/api/Comments/{newsID}

    @FormUrlEncoded    @POST("Comments/{newsID}")    Call<Comment> reportComment(        @Path("newsID") String commentID,        @FIEld("reason") String reason);
样式2(需要补全URL,问号后加入access_token,post的数据只有一条reason)

http://102.10.10.132/api/Comments/1?access_token=1234123
http://102.10.10.132/api/Comments/{newsID}?access_token={access_token}

    @FormUrlEncoded    @POST("Comments/{newsID}")    Call<Comment> reportComment(        @Path("newsID") String commentID,        @query("access_token") String access_token,        @FIEld("reason") String reason);
样式3(需要补全URL,问号后加入access_token,post一个body(对象))

http://102.10.10.132/api/Comments/1?access_token=1234123
http://102.10.10.132/api/Comments/{newsID}?access_token={access_token}

    @POST("Comments/{newsID}")    Call<Comment> reportComment(        @Path("newsID") String commentID,        @query("access_token") String access_token,        @Body CommentBean bean);
DELETE样式1(需要补全URL)

http://102.10.10.132/api/Comments/1
http://102.10.10.132/api/Comments/{commentID}

    @DELETE("Comments/{commentID}")    Call<ResponseBody> deleteNewsCommentFromAccount(        @Path("commentID") String commentID);
样式2(需要补全URL,问号后加入access_token)

http://102.10.10.132/api/Comments/1?access_token=1234123
http://102.10.10.132/api/Comments/{commentID}?access_token={access_token}

    @DELETE("Comments/{commentID}")    Call<ResponseBody> deleteNewsCommentFromAccount(        @Path("commentID") String commentID,        @query("access_token") String access_token);
样式3(带有body)

http://102.10.10.132/api/Comments

@http(method = "DELETE",path = "Comments",hasBody = true)Call<ResponseBody> deleteCommont(            @Body Commen@R_301_5998@ body    );

Commen@R_301_5998@:需要提交的内容,与Post中的Body相同

PUT(这个请求很少用到,例子就写一个)

http://102.10.10.132/api/Accounts/1
http://102.10.10.132/api/Accounts/{accountID}

    @PUT("Accounts/{accountID}")    Call<ExtrasBean> updateExtras(        @Path("accountID") String accountID,        @query("access_token") String access_token,        @Body ExtrasBean bean);
总结

@Path:所有在网址中的参数(URL的问号前面),如:
http://102.10.10.132/api/Accounts/{accountID}
@query:URL问号后面的参数,如:
http://102.10.10.132/api/Comments?access_token={access_token}
@queryMap:相当于多个@query
@FIEld:用于POST请求,提交单个数据
@Body:相当于多个@FIEld,以对象的形式提交
Tips

Tips1
使用@FIEld时记得添加@FormUrlEncodedTips2
若需要重新定义接口地址,可以使用@Url,将地址以参数的形式传入即可。如
    @GET    Call<List<Activity>> getActivityList(            @Url String url,            @queryMap Map<String, String> map);
    Call<List<Activity>> call = service.getActivityList(                "http://115.159.198.162:3001/API/ActivitySubjects", map);


作者:带心情去旅行
链接:https://www.jianshu.com/p/7687365aa946
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。 总结

以上是内存溢出为你收集整理的【Android】Retrofit网络请求参数注解,@Path、@Query、@QueryMap.全部内容,希望文章能够帮你解决【Android】Retrofit网络请求参数注解,@Path、@Query、@QueryMap.所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1112349.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存