收藏
回答

wx.openDocument偶尔打不开文件

框架类型 问题类型 操作系统 操作系统版本 手机型号 微信版本
小程序 Bug iOS 9.3.3 iPhone 6s 最新

- 当前 Bug 的表现(可附上截图)

wx.openDocument,成功调用的情况下,偶尔会打开不了文件,再次点击才能打开,开发者工具预览模式下没发现,真机调试有概率触发

- 提供一个最简复现 Demo


wxml:


<view class="container">

 

  <view class="uploader" bindtap="downloadPdf" style="height:100rpx; line-height: 100rpx;">

    <text>查看pdf</text>

  </view>

 

</view>


js:

downloadPdf: function (url, id) { // 查看pdf

    wx.downloadFile({

      url: 'https://yjd.yxsjob.com/media/2019/1/16/f902367378ea4bfa97d995f08e1049c1/kgSbzLlWbNIxUPFphBNR.pdf',

      success: function (res) {

        const filePath = res.tempFilePath

        wx.openDocument({

          filePath: filePath,

          success: function (res) {

            // console.log('打开文档成功')

          }

        })

      }

    })

  },


回答关注问题邀请回答
收藏

2 个回答

  • 开端
    开端
    2019-01-25

    wx.downloadFile({

    url: e.currentTarget.dataset.pdf,

    header: {},

    success: function(res) {

    var filePath = res.tempFilePath;

    console.log(res);

    if (res.statusCode == 404) {

    wx.showToast({

    title: '获取文件失败',

    icon: 'success',

    duration: 2000

    })

    } else {

    wx.openDocument({

    filePath: filePath,

    fileType: 'pdf',

    success: function(res) {

    console.log(res);

    wx.showToast({

    title: "打开成功",

    icon: 'success',

    duration: 2000

    })

    },

    fail: function(res) {

    wx.showToast({

    title: "打开失败",

    icon: 'success',

    duration: 2000

    })

    },

    complete: function(res) {

    console.log(res);

    }

    })

    }

    },

    fail: function(res) {

    console.log('文件下载失败');

    },

    complete: function(res) {},

    })


    2019-01-25
    有用
    回复
  • 疯狂的小辣椒
    疯狂的小辣椒
    2019-01-18

    fail(res){

    console.log(res)

    }


    看看呢

    2019-01-18
    有用
    回复 11
    查看更多(6)
登录 后发表内容