wx.openDocument手机端正常,为什么windows端无法打开?
wx.downloadFile({
url: 'https://---------'+relative_path+'/'+doc_name,
success: function (res) {
const tempFilePath = res.tempFilePath;
// 保存文件
wx.saveFile({
tempFilePath,
success: function (res) {
const savedFilePath = res.savedFilePath;
console.log("savedFilePath is:");
console.log(savedFilePath);
// 打开文件
wx.openDocument({
filePath: savedFilePath,
success: function (res) {
console.log('打开文档成功')
},
});
},
如图,提示打开成功,通过任务管理器查看起了一个进程叫wxfilewatcher.exe,但是没有调用到word或其他控件来打开文档。