OKHttp拦截器
# 1.拦截器简介
Interceptors are a powerful mechanism that can monitor, rewrite, and retry calls. Here's a simple interceptor that logs the outgoing request and theincoming response. (拦截器是一个强大的机制,可以监控,修改,重试 Call请求)
拦截有两种:Application Interceptor 和 Network Interceptor
一个灰色矩形块块就是一个Interceptor
,一个OkHttpClient
可以添加多个Interceptor
拦截器
- **
Application Interceptor
:**主要多用于查看请求信息或者返回信息,如链接地址,头信息,参数等 - **
Network Interceptor
:**多用于对请求体Request
或者响应体Response
的改变,缓存处理用这个
编辑 (opens new window)
上次更新: 2021/06/17, 17:05:09