wx.cloud.deleteFile

从云存储空间删除文件

请求参数

字段 说明 数据类型 默认值 必填
fileList 云文件 ID 字符串数组 String[] - Y
success 成功回调
fail 失败回调
complete 结束回调

success 返回参数

字段 说明 数据类型
fileList 删除结果列表,列表中的每一个对象的定义见下表 Object[]

fileList 列表中的对象说明

字段 说明 数据类型
fileID 云文件 ID String
status 状态码,0 为成功 Number
errMsg 成功为 ok,失败为失败原因 String

fail 返回参数

字段 说明 数据类型
errCode 错误码 Number
errMsg 错误信息,格式 apiName:fail msg String

使用示例

Callback 风格

  1. wx.cloud.deleteFile({
  2. fileList: ['a7xzcb'],
  3. success: res => {
  4. // handle success
  5. console.log(res.fileList)
  6. },
  7. fail: err => {
  8. // handle error
  9. }
  10. })

Promise 风格

  1. wx.cloud.deleteFile({
  2. fileList: ['a7xzcb']
  3. }).then(res => {
  4. // handle success
  5. console.log(res.fileList)
  6. }).catch(error => {
  7. // handle error
  8. })

原文: https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/storage/deleteFile.html