web场景中预加载一组图片
load list img
import { data } from 'onex-utils'; const imgList = ['https://....png', 'https://....png']; data.imgLoad(imgList).then(() => { console.log(‘加载完成’) }) .catch(() => { console.log('加载失败') })
预加载成功或者失败,是个Promise值
web场景中预加载一组图片
load list img