- 需求的场景描述(希望解决的问题)
我把图片存储到服务器上,然后把图片的路径放到数据库中,用户在本地端删除动态的时候,先从数据库中取出服务器上存的图片的地址,然后调用删除服务器图片的方法,但是这个函数只支持参数是静态的,动态的参数就不会被执行。
- 希望提供的能力
可以动态删除服务器上的图片
代码片段:
//data.photo里面存储了从数据库中读取的图片的地址,是个数组。
wx.cloud.deleteFile({
fileList: [that.data.photo],
success: res => {
console.log(res.fileList)
console.log(“删除服务器图片成功”)
const db = wx.cloud.database()
db.collection(‘commodity’).doc(event.currentTarget.id).remove({
success: function (res) {
console.log(res)
that.onPullDownRefresh()
},
fail: console.error
})
},
fail: err => {
// handle error
}
})