RxRetroHttp
RxRetroHttp copied to clipboard
RxJava2 + Retrofit2 http request lib, supports multiple api result data structures and multiple urls. Http请求库,支持同时存在多种返回格式和多个base url
Results
1
RxRetroHttp issues
Sort by
recently updated
recently updated
newest added
if (!apiResult.isSuccess()) { Log.e("----------------","getResultCode="+apiResult.getResultCode()); throw new ServerException(apiResult.getResultMsg(), apiResult.getResultCode()); } 当我请求错误时,没有弹出我的msg 而是在ApiException中的handleException方法里面走的else 为什么没有走else if (e instanceof ServerException) 需要怎么才走这个