请教,小程序中,下载文件以后,在手机上怎么找到下载的这个文件呢?按如下方法下载一个表格文件,打印的res确实显示成功,但是手机上找不到文件
wx.downloadFile({
url: "",https://xxxx.xlsx
success(res) {
if (res.statusCode === 200) {
wx.getFileSystemManager().saveFile({
tempFilePath: res.tempFilePath,
// filePath: `${wx.env.USER_DATA_PATH}/${name}`,
success(res) {
console.log(res)
/* res 的结果为:{"savedFilePath""wxfile://usr/1280836839112060928_recognitionTable.xlsx","errMsg"'saveFile:ok","errno":0} */
wx.showToast({
title: '保存成功',
icon: 'none',
duration: 1500
})
}
})
}
}
})
好像没说这个接口下载的文件对用户开放能在手机中查看,只是说下载到了用户目录下,要不你手机文件管理器里全局搜索文件名试试