# CacheManager wx.createCacheManager(Object object)
基础库 2.24.0 开始支持,低版本需做兼容处理。
小程序插件:不支持
相关文档: 弱网体验优化
# 功能描述
创建缓存管理器
# 参数
# Object object
属性 | 类型 | 默认值 | 必填 | 说明 | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
origin | string | 否 | 全局 origin | ||||||||||||||||||||||||||||
mode | string | weakNetwork | 否 | 缓存模式 | |||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
maxAge | number | 否 | 全局缓存有效时间,单位为毫秒,默认为 7 天,最长不超过 30 天 | ||||||||||||||||||||||||||||
extra | object | 否 | 额外的缓存处理 | ||||||||||||||||||||||||||||
|
# 返回值
# CacheManager
缓存管理器
# 示例代码
const cacheManager = createCacheManager()
cacheManager.addRule(/https:\/\/(?:.*)/ig) // 表示所有 https 请求都匹配
cacheManager.on('request', evt => {
// 在弱网时接收到 wx.request 请求
return new Promise((resolve, reject) => {
const matchRes = cm.match(evt)
if (matchRes && matchRes.data) {
// 有缓存,返回
resolve(matchRes.data)
} else {
// 没缓存,抛错
reject({ errMsg: 'no cache' })
}
})
})