const {
preview
} = e.currentTarget.dataset
console.log('链接地址', preview)
wx.downloadFile({
// 示例 url,并非真实存在
url: preview,
success: function (res) {
console.log('res', res)
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
},
fail: function (err) {
console.log(err)
}
})
}
})
其中preview是.pdf结尾的文件地址
但是下载之后之后变成了.bin文件,这是为什么呢
请问这个问题解决了吗? 我这边也发现这个问题了 同一个链接地址,只有ios会返回.bin文件 安卓正常返回.pdf文件
没有明确返回content-type就会这样