0

我写了一个改造界面,

public interface MyService {
    @POST("/api/index")
    <T> Observable<T> doRequest(@Body Object request);
}

然后构建服务,

RestAdapter restAdapter = new RestAdapter.Builder()
        .setEndpoint("http://localtest.com")
        .setConverter(new FastJsonConverter())
        .setRequestInterceptor(new CookiesInterceptor(LApplication.getInstance()))
        .build();
this.service = restAdapter.create(MyService.class);

当我请求时:

Observable<Response> resp = service.doRequest(getRequest())
resp.subscribeOn(Schedulers.newThread())
    .observeOn(AndroidSchedulers.mainThread())
    .subscribe(maoApi.mSubscriber);

但是转换器不能将json转换为响应对象?

我打印出Type in FastJsonConverter:fromBody(TypedInput body, Type type) 类型是T.

同样在使用 Gson 时,仍然有这个问题......

如何解决这个问题呢?还是我的设计不正确?

4

0 回答 0