举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > wx.cloud.uploadFile是云函数嘛? wx.cloud.uploadFile

wx.cloud.uploadFile是云函数嘛? wx.cloud.uploadFile

2023-06-24 06:18

wx.cloud.uploadFile是云函数嘛? wx.cloud.uploadFile

wx.cloud.uploadFile是云函数嘛? wx.cloud.uploadFile

wx.cloud.uploadFile是云函数嘛?

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

请求参数

字段说明数据类型默认值必填
cloudPath云存储路径,命名限制见文件名命名限制String-Y
filePath要上传文件资源的路径String-Y
headerHTTP 请求 Header, header 中不能设置 RefererObject-N
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 风格

wx.cloud.uploadFile({
  cloudPath: 'example.png',
  filePath: '', // 文件路径
  success: res => {
    // get resource ID
    console.log(res.fileID)
  },
  fail: err => {
    // handle error
  }
})

Promise 风格

wx.cloud.uploadFile({
  cloudPath: 'example.png',
  filePath: '', // 文件路径
}).then(res => {
  // get resource ID
  console.log(res.fileID)
}).catch(error => {
  // handle error
})


阅读全文
以上是编程学为你收集整理的wx.cloud.uploadFile是云函数嘛? wx.cloud.uploadFile全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部