iOS wx.savefile保存的文件在手机上能找到吗
let filePath = '****';
wx.saveFile({
tempFilePath: filePath,
success (res) {
const savedFilePath = res.savedFilePath
wx.openDocument({
// 可通过 downloadFile 获得,PDF文件路径
filePath: savedFilePath,
fileType: 'pdf',
success: function (res) {
},
fail: function (res) {
},
complete: function (res) {
}
})
}
})
在 IOS 上面用户无法找到下载文件。有什么对应的解决方案吗。谢谢