我正在尝试使用Retrofit2来实现put方法来更新演示API的记录,但是它没有给我回调响应并跳转到onFailure函数。
UpdateResponse类代码如下
public class UpdateResponse {
@SerializedName("id")
@Expose
private int id;
@SerializedName("name")
@Expose
private String name;
@SerializedName("salary")
@Expose
private String salary;
@SerializedName("age")
@Expose
private String age;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String employeeName) {
this.name = employeeName;
}
public String getSalary() {
return salary;
}
public void setSalary(String employeeSalary) {
this.salary = employeeSalary;
}
public String getAge() {
return age;
}
public void setAge(String employeeAge) {
this.age = employeeAge;
}
}
Api接口代码在下面
public interface ApiInterface {
@FormUrlEncoded
@PUT("api/v1/update/{id}")
Call<UpdateResponse> updateUser(@Path("id") int id,
@Field("name") String name,
@Field("salary") String salary,
@Field("age") String age);
}
Api类代码在下面
public class Api {
private static Retrofit retrofit = null;
public static ApiInterface getClient() {
if (retrofit==null) {
retrofit = new Retrofit.Builder()
.baseUrl("http://dummy.restapiexample.com/")
.addConverterFactory(GsonConverterFactory.create())
.build();
}
ApiInterface api = retrofit.create(ApiInterface.class);
return api;
}
}
下面是作为主要活动代码的对话框
String nameStr = name.getText().toString();
String salaryStr = salary.getText().toString();
String ageStr = age.getText().toString();
//idd is getting from mainActivity onitemSelect method, which is having the right id value
Call<UpdateResponse> call= Api.getClient().updateUser(idd,nameStr,salaryStr,ageStr);
call.enqueue(new Callback<UpdateResponse>() {
@Override
public void onResponse(Call<UpdateResponse> call, Response<UpdateResponse> response) {
Toast.makeText(c.getApplicationContext(),"Updated Name: "+response.body().getName(),Toast.LENGTH_LONG).show();
dismiss();
}
@Override
public void onFailure(Call<UpdateResponse> call, Throwable t) {
Toast.makeText(c.getApplicationContext(),"Failure",Toast.LENGTH_LONG).show();
dismiss();
}
});
响应电话中显示:
调用:ExecuterCallAdapterFactory $ ExecuterCallbackCall @ 5922”,并在Throwable中显示为“ com.google.gson.stream.MalformedJsonException:第1行第27列的未终止对象$ .error。
答案 0 :(得分:2)
您需要发送一个json正文
如下更改您的api方法签名
@Headers({"Content-Type: application/json"})
@PUT("api/v1/update/{id}")
Call<ResponseBody> updateUser(@Path("id") int id, @Body UpdateResponse body);
输入ID transient
public class UpdateResponse {
@SerializedName("id")
@Expose
private transient int id;
//..
在体内传递数据
UpdateResponse updateResponse = new UpdateResponse();
updateResponse.setName(name.getText().toString());
updateResponse.setSalary(salary.getText().toString());
updateResponse.setAge(age.getText().toString());
Call<UpdateResponse> call= Api.getClient().updateUser(idd, updateResponse);
答案 1 :(得分:0)
似乎您的改造代码很好。您可以共享整个Log并显示错误信息吗?我在SPAN_EXCLUSIVE_EXCLUSIVE上有一个与EditText相关的问题。
您得到的错误不是代码造成的;您可能正在具有Samsung TouchWiz的Samsung设备上进行测试。
我遇到了同样的错误,然后我在Nexus S(也由三星进行了测试,但没有TouchWiz的纯Android操作系统)进行了测试,