UploadTask.onProgressUpdate

解释:监听上传进度变化事件,在上传的过程中会被多次触发。

方法参数

Function callback

callback 返回参数说明

参数类型说明

progress

Number

上传进度百分比

totalBytesSent

Number

已经上传的数据长度(单位:Bytes)

totalBytesExpectedToSend

Number

预期需要上传的数据总长度(单位:Bytes)

示例

跳转编辑工具

在开发者工具中打开

在 WEB IDE 中打开

扫码体验

代码示例

百度智能小程序

请使用百度APP扫码

图片示例

UploadTask.onProgressUpdate - 图2

代码示例

  • SWAN
  • JS
  1. <view class="card-area">
  2. <view class="title">已经上传的数据长度:{{alreadyData}} Bytes</view>
  3. <view class="title">预计上传的数据长度:{{targetData}} Bytes</view>
  4. <view class="title">
  5. <progress class="progress" percent="{{progress}}" activeColor="#3c76ff" show-info />
  6. </view>
  7. </view>
  8. <button type="primary" bind:tap="uploadTaskProgress">点击上传和获取上传进度</button>