wx.openDocument 真机无法打开文件?
调试基础库:3.1.2,调用如下代码打开xls文档,PC上可以打开,但是真机无法打开,提示文件不存在,实际查看文件是存放用户区的
wx.openDocument({
filePath: `${wx.env.USER_DATA_PATH}`+"/records/" + e.currentTarget.dataset.path,
fileType: 'xls',
success: function (res) {
console.log('打开文档成功');
},
fail: function (error) {
console.log(error);
},
});