在此i m使用 @Fields
带有@FormUrlEncoded
的数据,但我必须在同一API @Part("user_image") RequestBody file
中与@Multipart
一起使用。怎么可能?提前致谢。
@FormUrlEncoded
@POST("/datingapp/index.php/Webservice")
Call<Result> signupUser(@Field("user_name") String name,
@Field("age") String age,
@Field("work") String work,
@Field("home_town") String home_town,
@Field("gender") String gender,
@Field("interest") String interest,
@Field("study") String study,
@Field("email") String email,
@Field("password") String password,
@Field("device_id") String device_id,
@Field("device_type") String device_type,
@Part("user_image") RequestBody file,
@Field("signup") String signup);
http协议在同一请求中允许2个内容类型。因此,您必须选择:
- 应用程序/x-www-form-urlencoded
- Multipart/form-data
您使用application/x-www-form-urlencoded
使用注释@FormUrlEncoded
来发送图像,您必须将整个文件转换为文本(例如base64)。
更好的方法是通过描述您的请求来使用multipart/form-data
:
@Multipart
@POST("/datingapp/index.php/Webservice")
Call<Result> signupUser(@Part("user_name") String name,
@Part("age") String age,
@Part("work") String work,
@Part("home_town") String home_town,
@Part("gender") String gender,
@Part("interest") String interest,
@Part("study") String study,
@Part("email") String email,
@Part("password") String password,
@Part("device_id") String device_id,
@Part("device_type") String device_type,
@Part("user_image") RequestBody file,
@Part("signup") String signup);
@Multipart
@POST("/datingapp/index.php/Webservice")
Call<Result> signupUser(@PartMap Map<String,String> queryMap,
@Part("user_image") RequestBody file);
在这里,@PartMap
包含所需的其他参数,这只是一个包含键和值的HashMap
,例如,
LinkedHashMap<String,String> map = new LinkedHashMap<String,String>();
map.put("user_name",username);
喜欢上面等等。
这样的API调用:
@POST("/datingapp/index.php/Webservice")
@FormUrlEncoded
@Multipart
Call<Result> signupUser(@FieldMap LinkedHashMap<String, String> data,@Part RequestBody file);
传递数据是LinkedHashMap
中的密钥和价值的形式
LinkedHashMap<String, String> data = new LinkedHashMap<>();
data.put("user_name", user_name);
data.put("age", age);
data.put("work", work);
data.put("work", work);
data.put("gender", gender); and so on ....
在Multiparts
中获取图像:
RequestBody file= RequestBody.create(MediaType.parse("image/jpeg"), file);
击中API的最终通话:
Call<Result> call = apiService.signupUser(data ,file);
希望这有效:)