收藏
回答

苹果ios设备上progress组件下载进度不显示?

开发者工具上正常显示, 安卓手机上也正常显示,就ios设备上显示不了

按照小程序开发文档上写的,找不出bug原因,求大佬指点一下

//小程序js
downloadfile () {
    const downloadTask = wx.downloadFile({
      url'test.mp4',
      successfunction (res{
        console.log(res)
        if (res.statusCode === 200) {
          wx.saveVideoToPhotosAlbum({
            filePath: res.tempFilePath,
            successfunction (res{
              wx.showToast({
                title'保存成功'
              })
            },
            failfunction (res{
              console.log(res)
              wx.showToast({
                title'保存失败'
              })
            }
          })
        }
      }
    })
    downloadTask.onProgressUpdate((res) => {
      this.setData({
        progress: res.progress
      })
    })
  },

//小程序wxml

<progress wx:if="{{progress}}" percent="{{progress}}" backgroundColor="white" color="#0081FF" duration="30" border-radius='50' bindtap="progress" show-info></progress>
<button bindtap='downloadfile'>保存视频{{progress}}</button>
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容