const fs = wx.getFileSystemManager() const savePath = `${wx.env.USER_DATA_PATH}/${todo['department']}/${todayDate}` const fileName = todo['title'] wx.chooseMedia({ count: 9, mediaType: ['image','video'], sourceType: ['album', 'camera'], maxDuration: 30, camera: 'back', success(res) { res.tempFiles.forEach((item, index, arr) => { try { let filePath = savePath + '/' + fileName + '.' + item.tempFilePath.split('.').pop() fs.saveFileSync(item.tempFilePath, filePath) todo[item.fileType].push({ fileType: item.fileType, size: item.size, filePath: filePath }) } catch (e) { console.log('err') } }) } })
chooseMedia上传图片,保存后不能在image中展示?我是用chooseMedia上传的图片,直接展示tempFilePath可以展示,如果saveFile后的地址无法展示。 [图片][图片] [图片] 请大家帮忙看下吧。
2023-06-20