okhttp的interceptor拦截器功能

这篇文章中写得很全面http://blog.csdn.net/oyangyujun/article/details/50039403

补充两点:
1,chain.processed(request)方法就意味着被拦截的url执行了一次,如果你调用了多次该方法,那么此url接口就会被执行多次。
我就跳到坑里了,应用所有接口都返回了两次response……

2,如果添加多个interceptor的话,那么你需要保证每个interceptor都把chain.processed给return出去,从而能保证在下个interceptor中继续执行。

okhttp的interceptor拦截器功能_第1张图片
添加了三个interceptor
okhttp的interceptor拦截器功能_第2张图片
把chain.processed给return出去

那么如果在执行chain.processed的时候出错了怎么办呢,比如timeout、无网络等情况,那么就如下这么做:

okhttp的interceptor拦截器功能_第3张图片
把catch到的exception给throw出去

这样就能保证下个interceptor继续正确执行了,否则下个interceptor就要报null point了~~

请关注我的微信公众号~


![](http://upload-images.jianshu.io/upload_images/1857762-ac193d5a674126b6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

你可能感兴趣的:(okhttp的interceptor拦截器功能)