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 上面用户无法找到下载文件。有什么对应的解决方案吗。谢谢
找不到,只能预览打开看,也不能右上角发送给别人
找不到。。不过可以通过wx.getSavedFileList找到文件,再发给别人
谢谢,发送给别人是怎么操作的。使用那个 API
如果是一些doc之类的,可以wx.opendocument打开,然后右上角发给别人不?我没试过。。
谢谢。wx.opendocument可以打开 pdf。在 android 可以。Ios 一样不可以。
filePath你怎么写的呢?