请尝试使用这个
@FormUrlEnpred @POST("api/sponsors") Call<List<SponsorsResult>> getStatesAndDistrict( @Field("xyz") String field1 ); Call <List<SponsorsResult>> call = service.getSponsorsValue(); call.enqueue(new Callback<List<SponsorsResult>>() { @Override public void onResponse(Call<List<SponsorsResult>> call, Response<List<SponsorsResult>> response) { List<SponsorsResult> rs = response.body(); } @Override public void onFailure(Call<List<SponsorsResult>> call, Throwable t) { } }); class SponsorsResult { @SerializedName("sponsors") private List<SponsorsValue> sponsors; public List<SponsorsValue> getSponsors() { return sponsors; }}class SponsorsValue{ @SerializedName("leg_id") @Expose private String legId; @SerializedName("type") @Expose private String type; @SerializedName("name") @Expose private String name; public String getLegId() { return legId; } public void setLegId(String legId) { this.legId = legId; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getName() { return name; } public void setName(String name) { this.name = name; }}如果您遇到任何问题,请告诉我。



