Retrofit + 协程封装,如何优雅的去掉try catch?

作者:ChengTao

Retrofit 2.6.0 版本后对 suspend 方法进行了支持,对使用 kotlin 的开发者来说简直是福音, 但是执行 suspend 方法的时候异常处理仍然是件繁琐的事情,必须显示的执行 try catch, 或者使用 kotlin 自带的异常处理类CoroutineExceptionHandler 进行处理,但是不管哪种方式, 代码都很挫,不够优雅。

一、优雅的代码

val service = retrofit.create(WanAndroidService::class.java).proxyRetrofit()
// 执行 test
service.test()
    .onSuccess { println("execute test success ==> $it") }
    .onFailure { println("execute test() failure ==> $it") }
    // 执行 userInfo
    .onFailureThen { service.userInfo() }
    ?.onSuccess { println("execute userInfo success ==> $it") }
    ?.onFailure { println("execute userInfo() failure ==> $it") }
    // 执行 banner
    ?.onFailureThen { service.banner() }
    ?.onSuccess { println("execute banner() success ==> $it") }
    ?.onFailure { println("execute banner() failure ==> $it") }

没有任何的 try catch !!!

运行结果如下:

execute test() failure ==> Failure(code=-1, message=HTTP 404 Not Found)
execute userInfo() failure ==> Failure(code=-1001, message=请先登录!)
execute banner() success ==> [{"desc":"一起来做个App吧","id":10,"imagePath":"https://www.wanandroid.com/blogimgs/50c115c2-cf6c-4802-aa7b-a4334de444cd.png","isVisible":1,"order":1,"title":"一起来做个App吧","type":0,"url":"https://www.wanandroid.c

你可能感兴趣的:(Android,移动开发,Android,移动开发,面试)