在 POST 请求中发送 JSON 并进行改造

2022-09-04 03:18:19

我已经多次看到这个问题,并尝试了许多解决方案,但没有解决我的问题,我试图使用改造在POST请求中发送json,我不是编程专家,所以我可能会错过一些明显的东西。

我的 JSON 在一个字符串中,如下所示:

{"id":1,"nom":"Hydrogène","slug":"hydrogene"}

My Interface(称为 APIService.java)如下所示:

@POST("{TableName}/{ID}/update/0.0")
Call<String> cl_updateData(@Path("TableName") String TableName, @Path("ID") String ID);

我的 ClientServiceGenerator.java看起来像这样:

public class ClientServiceGenerator{
private static OkHttpClient httpClient = new OkHttpClient();

public static <S> S createService(Class<S> serviceClass, String URL) {
    Retrofit.Builder builder =
            new Retrofit.Builder()
                    .baseUrl(URL)
                    .addConverterFactory(GsonConverterFactory.create());

    Retrofit retrofit = builder.client(httpClient).build();
    return retrofit.create(serviceClass);
}}

最后,这是我的活动中的代码

APIService client = ClientServiceGenerator.createService(APIService.class, "http://mysiteexample.com/api.php/");
    Call<String> call = client.cl_updateData("atomes", "1");
    call.enqueue(new Callback<String>() {
        @Override
        public void onResponse(Response<String> response, Retrofit retrofit) {
            if (response.code() == 200 && response.body() != null){
                Log.e("sd", "OK");
            }else{
                Log.e("Err", response.message()+" : "+response.raw().toString());
            }
        }

        @Override
        public void onFailure(Throwable t) {
            AlertDialog alertError = QuickToolsBox.simpleAlert(EditDataActivity.this, "updateFail", t.getMessage(), new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int which) {
                    dialog.cancel();
                }
            });
            alertError.show();
        }
    });

告诉我,如果你需要其他任何东西,希望有人可以帮助我。

编辑第一次没有提到它,但我的JSON并不总是使用相同的键(id,nom,slug)。


答案 1

首先,您需要创建一个对象来表示您需要的 json:

public class Data {
    int id;
    String nom;
    String slug;

    public Data(int id, String nom, String slug) {
        this.id = id;
        this.nom = nom;
        this.slug = slug;
    }
}

然后,修改您的服务以便能够发送此对象:

@POST("{TableName}/{ID}/update/0.0")
Call<String> cl_updateData(@Path("TableName") String TableName, @Path("ID") String ID, @Body Data data);

最后,传递此对象:

Call<String> call = client.cl_updateData("atomes", "1", new Data(1, "Hydrogène", "hydrogene"));

断续器

为了能够发送任何数据,请使用:ObjectData

@POST("{TableName}/{ID}/update/0.0")
Call<String> cl_updateData(@Path("TableName") String TableName, @Path("ID") String ID, 
        @Body Object data);

答案 2