wx.cloud.uploadFile

将本地资源上传至云存储空间,如果上传至同一路径则是覆盖写

请求参数

字段说明数据类型默认值必填
cloudPath云存储路径,命名限制见文件名命名限制String-Y
filePath要上传文件资源的路径String-Y
config配置Object-N
success成功回调
fail失败回调
complete结束回调

config 对象定义

字段说明数据类型
env使用的环境 ID,填写后忽略 init 指定的环境String

success 返回参数

字段说明数据类型
fileID文件 IDString
statusCode服务器返回的 HTTP 状态码Number
errMsg错误信息,格式 uploadFile:okString

fail 返回参数

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

返回值

如果请求参数中带有 success/fail/complete 回调中的任一个,则会返回一个 UploadTask 对象,通过 UploadTask 对象可监听上传进度变化事件,以及取消上传任务。

使用示例

Callback 风格

  1. wx.cloud.uploadFile({
  2. cloudPath: 'example.png',
  3. filePath: '', // 文件路径
  4. success: res => {
  5. // get resource ID
  6. console.log(res.fileID)
  7. },
  8. fail: err => {
  9. // handle error
  10. }
  11. })

Promise 风格

  1. wx.cloud.uploadFile({
  2. cloudPath: 'example.png',
  3. filePath: '', // 文件路径
  4. }).then(res => {
  5. // get resource ID
  6. console.log(res.fileID)
  7. }).catch(error => {
  8. // handle error
  9. })