Tag Archives: code

Retrofit 2 关于HTTP返回码的一点小坑

在Retrofit 1 时,会在onError中返回并抛出HttpException,但是在2中,不会再回调onError了,而是会在onNext中,这个任务就需要客户端自己处理。

https://futurestud.io/tutorials/retrofit-2-simple-error-handling

参考如下:

Error Handler in Action

etrofit 2 has a different concept of handling "succe[......]

继续阅读