小程序加载图片如何开启全局缓存?
网友回复
在小程序中,图片组件本身不直接支持全局缓存,但可以结合使用 wx.getStorage 和 wx.setStorage 来实现。以下是示例代码:
// index.js Page({ data: { imageUrl: '' }, onLoad: function () { const that = this; wx.getStorage({ key: 'cachedImage', success: function (res) { // 如果缓存存在 that.setData({ imageUrl: res.data }); }, fail: funct...
点击查看剩余70%