-
dio-http-cache是一个针对Flutter dio的http缓存库,类似RxCache
资源介绍
dio-http缓存
Dio-http-cache是的缓存库 ,就像Android中的一样。
Dio-http-cache使用作为磁盘缓存,使用策略作为内存缓存。
受启发。
添加依赖
dependencies :
dio_http_cache : ^0.2.x # latest version
快速开始
在Dio中添加一个dio-http-cache拦截器:
dio.interceptors. add ( DioCacheManager ( CacheConfig (baseUrl : "http://www.google.com" )).interceptor);
为请求设置maxAge:
Dio (). get (
"http://www.google.com" ,
options : buildCacheOptions ( Duration (days : 7 )