swan.cloud.deleteFile
解释:删除云存储空间中的指定文件,一次最多删除 50 个。
参数说明
该方法的传入参数类型为对象类型,参数说明如下:
字段 | 类型 | 必填 | 说明 |
---|---|---|---|
fileList | String[] | 是 | 云文件 ID |
config | Object | 否 | 局部覆盖 swan.cloud.init 中的全局配置 |
success | Function | 否 | 接口调用成功的回调函数 |
fail | Function | 否 | 接口调用失败的回调函数 |
complete | Function | 否 | 接口调用结束的回调函数 |
config
参数说明:
字段 | 类型 | 说明 |
---|---|---|
env | String | 使用的环境 ID,将覆盖 swan.cloud.init 指定的环境 |
success
返回参数说明
字段 | 类型 | 说明 |
---|---|---|
fileList | Object[] | 删除结果列表,定义详见下表 |
fileList
参数说明:
字段 | 类型 | 说明 |
---|---|---|
fileID | String | 云文件 ID |
status | Number | 状态码,0 为成功 |
errMsg | String | 成功为 deleteFile:ok,失败为失败原因 |
fail
返回参数说明
字段 | 类型 | 说明 |
---|---|---|
errCode | Number | 错误码 |
errMsg | String | 错误信息 |
代码示例
callback
风格:
- JS
swan.cloud.deleteFile({
fileList: ['test-env/my-image.png'],
success: res => {
console.log(res.fileList)
},
fail: err => {
// ...
}
})
Promise
风格:
- JS
swan.cloud.deleteFile({
fileList: ['test-env/my-image.png']
}).then(res => {
console.log(res.fileList)
}).catch(err => {
// ...
});