电脑上的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(‘保存本地成功’);
}
})
}