wx.openDocument在ios系统和安卓系统下载打开的文件类型不一样?
代码: wx.downloadFile({ url: this.data.filePath, success: function (res) { console.log(res.tempFilePath) wx.openDocument({ filePath: res.tempFilePath, showMenu: true, success: function (res) { wx.showToast({ title: '下载成功!', }) }, fail: function (res) { } }) } }) 后台上传了一个pdf文件,在iOS系统打开正常,转发给好友也是PDF格式,可是换了安卓系统测试后,打开之后变成了tmp文件格式,且转发也变成了tmp,微信不支持打开此类文件。跪求解决方法