PDF乱码问题,为什么电脑不乱码到手机上就乱码?
发布于 7 年前 作者 qqiao 10607 次浏览 来自 官方Issues

电脑上的api返回的路径 电脑上访问不乱码,真机调试各种乱码 但是 文件用Acrobat就没有问题了 ,现在有没有什么解决办法

代码如下:

wx.downloadFile({

url:res.Data,// res.Data上一步还有请求地址,

header: {},

contentType: ‘application/pdf;charset=UTF-8’,

success: function (res)

{

console.log(res.tempFilePath);

var Path=res.tempFilePath;

console.log(Path);

wx.openDocument({

fileType: ‘pdf’,

filePath: Path,

contentType: ‘application/pdf;charset=UTF-8’,

success: function (res) {

console.log(‘打开pdf成功’);

wx.saveFile({

tempFilePath: Path,

tempFileType: ‘pdf’,

contentType: ‘application/pdf;charset=UtF-8’,

success: function (res) {

console.log(‘保存本地成功’);

}

})

}

1 回复

Acrobat 是手机端的 . Pc端的话 正常访问都不会乱码

回到顶部