react-native-mhttpcache
v2.1.0
Published
Control http cache used by fetch/XMLHttpRequest
Maintainers
Readme
react-native-mhttpcache
React Native http cache control for both fetch/XMLHttpRequest and ImageView
本项目基于react-native-http-cache调整开发,感谢作者的贡献
- [x] iOS
- [x] Android
安装
npm install react-native-mhttpcache --save使用
import * as CacheManager from 'react-native-mhttpcache';
// invoke API directly when in need
CacheManager.clear();
API 说明
clear()
【Promise】清除所有缓存
getSize()
【Promise】获取所有缓存大小(bytes)
clearHttpCache()
【Promise】清除 fetch/ajax 缓存
getHttpCacheSize()
【Promise】获取 fetch/ajax 缓存大小(bytes)
clearImageCache()
【Promise】清除 ImageView 缓存
getImageCacheSize()
【Promise】获取 ImageView 缓存大小(bytes)
