- 需求的场景描述(希望解决的问题)
wx.cloud.downloadFile({
fileID: 'cloud://*******/home-banner/***.jpg', // 文件 ID
success: res => {
// 返回临时文件路径
console.log(res)
this.setData({
bannerImgUrls:[res.tempFilePath]
})
},
fail: console.error
})
- 希望提供的能力
我储存管理一个文件夹内放置多张图片,能否通过什么方法获取文件夹内是所有图片的地址返回到前端页面
现在不能获取文件列表
只能把文件id 存到数据库
然后 根据数据库的文件id获取
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-server-api/storage/getTempFileURL.html
看下这个是不是你想要的