我用这段代码,生成了一个文件,这个文件在windows,安卓系统都可以找到。
但苹果的mac笔记本上找不到,这个文件应该怎么找到,大家帮忙想想办法
var fileName = `${wx.env.USER_DATA_PATH}/suanyifang.html`;
fs.writeFile({
filePath:fileName,
data: this.buildPrintString(),
encoding: 'utf8',
success(res) {
wx.showModal({
title: '生成打印文件成功!',
content: '请在系统中搜索suanyifang.html,并用浏览器打开。位置' + fileName + " res:" + res.errMsg ,
showCancel: false});
console.log(res);
},
fail(res) {
console.error(res)
}
})
可以尝试在Finder中使用快捷键`Command+Shift+G`打开前往文件夹对话框,然后将文件路径`${wx.env.USER_DATA_PATH}`粘贴到对话框中并点击前往按钮,以便找到该文件