natty8312
Results
1
comments of
natty8312
/** * 下载图片资源 * @param {*} imageUrl */ _downImage(imageUrl) { return new Promise((resolve, reject) => { if (/^http/.test(imageUrl) && !new RegExp(wx.env.USER_DATA_PATH).test(imageUrl)) { // 支持临时图片 if (imageUrl.indexOf('http://tmp') != -1){ resolve(imageUrl); }...