当我在POSTMAN中选择表格数据时,如何使用Retrofit2发布数据

时间:2018-12-17 05:53:34

标签: java android retrofit retrofit2

当我过去使用改造通过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。 如何在这里使用表单数据进行形式化编码。 或者我的邮递员需要任何更改

邮递员在这里成功时,我选择了表格数据 Postman One

邮递员,当我选择表单URL编码时 Postman two

1 个答案:

答案 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