这是我的retrofit2界面
@Multipart
@PUT("webservice")
fun setProfile(
@Part("city") city: RequestBody,
@Part("name") name: RequestBody,
@Part("sex") sex: RequestBody,
@Part("birthday") birthday: RequestBody,
@Part("about_me") aboutMe: RequestBody,
@Part img: MultipartBody.Part
): Observable<BaseResponse>
这就是我创建这些RequestBodies的方式:
RequestBody.create(MediaType.parse("text/plain"), body.city),
RequestBody.create(MediaType.parse("text/plain"), body.name),
RequestBody.create(MediaType.parse("text/plain"), body.sex),
RequestBody.create(MediaType.parse("text/plain"), body.birthday),
RequestBody.create(MediaType.parse("text/plain"), body.about_me),
我的网络服务获取如下数据:
Accept: application/jsonContent-Type: multipart/form-data; boundary=
Content-Disposition: form-data; name="city"
Tokyo
Content-Disposition: form-data; name="name"
John Smith
Content-Disposition: form-data; name="sex"
male
Content-Disposition: form-data; name="avatar"; filename="avatar.png"
Content-Type: image/png
(img data)
当我如上所述发送数据时,我得到422错误代码,并带有下一个描述
必须填写野外城市
因此,据我了解,Web服务无法找到这些字段。但是,当我发送不带img的数据时,就像@Body一样,它运行良好。有什么想法吗?
答案 0 :(得分:0)
我终于解决了这个问题。我与后端开发人员进行了长时间的讨论,我们发现了一个错误。我不得不使用 POST 并将下一个字段放入 params 中:
params.put("_method", "PUT")