我已经从后端团队那里收到了这个端点,但是我不能在Retrofit中实现它,请注意这里有重复的标签[]字段,后端人们说这是正确的:
我尝试了类似的方法,但是它没有提交标签:
@Multipart
@POST("/submit")
Call<ResponseBody> postDocument(
@Part List<MultipartBody.Part> f1,
@Part List<MultipartBody.Part> f2,
@Part("id") RequestBody id,
@Part("emails") List<RequestBody> emails,
@Part("tags") ArrayList<String> tags_1,
@Part("tags") ArrayList<String> tags_2,
@Part("email") RequestBody email
);