简体   繁体   English

改造响应

[英]Retrofit Response

So i have this JSON Response from a server: 所以我有一个来自服务器的JSON响应:

{
    "result": {
        "id": 30,
        "status": "Successful."
    }
}

And a java class where: 还有一个Java类,其中:

public class JSONResponse {
    @SerializedName("result")
    public JsonObject res;
    @SerializedName("id")
    public int id;
    @SerializedName("status")
    public String msg;
}

And here is where i call the service: 这是我给该服务打电话的地方:

customerResponseCall.enqueue(new Callback<CustomerRequestResponse>() {
            @Override
            public void onResponse(Call<CustomerRequestResponse> call, Response<CustomerRequestResponse> response) {
               response.body().res.get(String.valueOf(response.body().id));
                Toast.makeText(MainActivity.this, "User Registed Successfully!!!" + "\n" + "User ID = " + response.body().id, Toast.LENGTH_LONG).show();// this  your result

            }

            @Override
            public void onFailure(Call<CustomerRequestResponse> call, Throwable t) {
                Log.e("response-failure", call.toString());
            }
        });

And i want to be able to get the value of the id when there is a response from server. 而且我希望能够在服务器响应时获取id的值。 How do i go about this? 我该怎么办? Please Help 请帮忙

Change you JSONResponse as below; 如下更改您的JSONResponse; because JSON you're getting has JSONObject result 因为您获取的JSON具有JSONObject result

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class CustomerRequestResponse{

@SerializedName("result")
@Expose
private Result result;

public Result getResult() {
return result;
}

public void setResult(Result result) {
this.result = result;
}

}

Result Class 结果类

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Result {

@SerializedName("id")
@Expose
private Integer id;
@SerializedName("status")
@Expose
private String status;

public Integer getId() {
return id;
}

public void setId(Integer id) {
this.id = id;
}

public String getStatus() {
return status;
}

public void setStatus(String status) {
this.status = status;
}

}

Change your code as 将您的代码更改为

customerResponseCall.enqueue(new Callback<CustomerRequestResponse>() {
            @Override
            public void onResponse(Call<CustomerRequestResponse> call, Response<CustomerRequestResponse> response) {
                Integer id =  response.body().getResult().getId();
                Toast.makeText(MainActivity.this, "User Registered Successfully!!!" + "\n" + "User ID = " + id, Toast.LENGTH_LONG).show();// this  your result

            }

            @Override
            public void onFailure(Call<CustomerRequestResponse> call, Throwable t) {
                Log.e("response-failure", call.toString());
            }
        });

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM