小程序
小游戏
企业微信
微信支付
扫描小程序码分享
wx.saveFile()无法保存文件到本地 并且不能选择保存位置
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
可以用wx.env.USER_DATA_PATH来实现保存到本地,然后分享给朋友再下载到手机
openFile (item) { let that = this wx.showLoading({ title: '下载中...', mask: true }) wx.downloadFile({ url: item.url, filePath: wx.env.USER_DATA_PATH + '/' + item.fullName, success (res) { if (res.statusCode === 200) { wx.hideLoading() console.log(res); // 打开文档 let filePath = res.filePath wx.openDocument({ filePath: filePath, showMenu: true, // 必须设置为true才能分享 success: function (res) { console.log('打开文档成功') }, fail: function (err) { console.log(err, '打开失败'); } }) } } }) },
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.saveFile 后临时路劲就变了所以没法用了wx.openDocument这个官方文档上说了啊
你可以先打印一下fail回调看看错误提示,或者通过远程调试排除错误
这些都试了还是不行、wx.saveFile()不能与wx.openDocument()共存
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
openFile (item) { let that = this wx.showLoading({ title: '下载中...', mask: true }) wx.downloadFile({ url: item.url, filePath: wx.env.USER_DATA_PATH + '/' + item.fullName, success (res) { if (res.statusCode === 200) { wx.hideLoading() console.log(res); // 打开文档 let filePath = res.filePath wx.openDocument({ filePath: filePath, showMenu: true, // 必须设置为true才能分享 success: function (res) { console.log('打开文档成功') }, fail: function (err) { console.log(err, '打开失败'); } }) } } }) },
wx.saveFile 后临时路劲就变了所以没法用了wx.openDocument这个官方文档上说了啊
你可以先打印一下fail回调看看错误提示,或者通过远程调试排除错误
这些都试了还是不行、wx.saveFile()不能与wx.openDocument()共存
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题
麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题