wx.openDocument兼容性问题
发布于 6 年前 作者 rcheng 2761 次浏览 来自 问答

安卓6.0,微信6.5.10

console.log报:openDocument:fail user cancel

代码:

viewDocument: function(e) {

    var that = this;

    this.setData({buttonText: ‘下载中…’});

    this.download(this.data.url, function (res) {

      that.setData({ buttonText: ‘查看原文件’ });

      wx.openDocument({

        filePath: res.tempFilePath,

        success: function () {

        },

        fail:function(res){

          console.log(res);

        }

      });

    });

  },

2 回复

遇到了同样的问题,请问您现在有成功解决吗?

回到顶部