当我过去使用改造通过Api发布数据时,我在界面中使用@FormUrlEncoded时得到了响应400,但在邮递员中我使用了表单数据来发布,请您帮我
这是我的界面
public interface SignupApiService {
@POST("users")
@FormUrlEncoded
Call<ResponseBody> savePost(@Field("email") String email,
@Field("password") String password,
@Field("role") int role);
}
这是我的注册活动
Call<ResponseBody> call = SignupClient
.getInstance().getApi()
.savePost(email, password, roleValue);
call.enqueue(new Callback<ResponseBody>() {
@Override
public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
int statusCode = response.code();
progressBar.setVisibility(View.GONE);
Log.d("SignupActivity", "onResponse" +statusCode);
}
@Override
public void onFailure(Call<ResponseBody> call, Throwable t) {
Toast.makeText(SignupActivity.this, t.getMessage(), Toast.LENGTH_SHORT).show();
}
});
这是我的Java类
public class SignupClient {
private static SignupClient mInstance;
private static Retrofit retrofit;
private static final String BASE_URL = "http://74.207.233.160/api/v1/";
private SignupClient(){
retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create())
.build();
}
public static synchronized SignupClient getInstance() {
if (mInstance == null){
mInstance = new SignupClient();
}
return mInstance;
}
public SignupApiService getApi() {
return retrofit.create(SignupApiService.class);
}
}
在这里,当我使用formurlencoded时,得到的响应为400。 如何在这里使用表单数据进行形式化编码。 或者我的邮递员需要任何更改
答案 0 :(得分:0)
像这样编辑您的接口方法
@POST("users")
Call<ResponseBody> savePost(@PartMap() Map<String, RequestBody> map);
以及调用此方法的位置
Map<String, RequestBody> map = new HashMap<>();
map.put("user[email]", RequestBody.create(MultipartBody.FORM,email))
# same way add password and other params
and call the interface method by passing this map