小程序下载文件

论坛 期权论坛 编程之家     
选择匿名的用户   2021-6-2 15:48   3357   0

/**

 * 下载文件并预览

 */

downloadFile:function(e){
    var index = e.currentTarget.dataset.index;//获取当前长按图片下标
    let url=this.data.files[index]['path'];
    wx.downloadFile({
        url: url,
        header: {},
        success: function(res) {
            var filePath = res.tempFilePath;
            wx.openDocument({
                filePath: filePath,
                success: function (res){
                    console.log('打开文档成功')
                },
                fail: function (res){
                    console.log(res);
                },
                complete:function (res){
                    console.log(res);
                }
            })
        },
        fail: function(res) {
            console.log('文件下载失败');
        },
        complete: function(res) {},
    })
},
分享到 :
0 人收藏
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

积分:3875789
帖子:775174
精华:0
期权论坛 期权论坛
发布
内容

下载期权论坛手机APP