我正在使用Retrofit2
。我知道只允许一个编码注释。在改造中。但我需要拥有所有属性。 inqueue
中的body
和id
中的path
x-www-form-urlencoded
@Multipart
@FormUrlEncoded
@PUT("queue/{id}")
Call<Queue> cancelQueue(@Header("Authorization") String Authorization, @Path("id") String id, @Part("inqueue") RequestBody inqueue));
注意:我以这种方式使用邮差,但它确实有效。