Retrofit 使用 DELETE 方式

Posted 黄毛火烧雪下

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Retrofit 使用 DELETE 方式相关的知识,希望对你有一定的参考价值。

传query

 @DELETE("/community/consumer/post/comment")
 suspend fun deleteComment (@Query("vin") id: String): Response<Any>

传body

@HTTP(method = "DELETE", path = "/community/consumer/post/comment", hasBody = true)
suspend fun deleteComment (@Body request: DeleteCommentRequest): Response<Any>

以上是关于Retrofit 使用 DELETE 方式的主要内容,如果未能解决你的问题,请参考以下文章

Retrofit踩坑之Delete请求

Retrofit初识

Android 初识Retrofit

Android Retrofit和Rxandroid的使用

Android Retrofit和Rxandroid的使用

第七章 springboot + retrofit