小程序
小游戏
企业微信
微信支付
扫描小程序码分享
下载的文件执行重命名,Android上没问题,iOS上失败
oldPath: wxfile://store_97aa53723a830fe4c5b29ffa1f2ce1fb.png
newPath: wxfile://usr/测试_YM-JF-19082000003.png
{errMsg: "rename:fail permission denied, open wxfile://store_97aa53723a830fe4c5b29ffa1f2ce1fb.png"}
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
downloadFile 直接传入重命名好的路径可以解决
function saveFile (src) { let newPath = `${wx.env.USER_DATA_PATH}/filename.xls` uni.downloadFile({ url: src, //仅为示例,并非真实的资源 filePath: newPath, //指定目录是为了重命名 success: res => { if (res.statusCode === 200) { uni.openDocument({ filePath: newPath, showMenu: true, success: function (res) { uni.hideLoading() } }) } } }) }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
看右边的相关问题,已经有人给出方案了 https://developers.weixin.qq.com/community/develop/doc/0004cebab0c7807df7778adec51400?_at=1566292965141
这个问题还是存在,没有解决。。。
2020年了,这个问题还在
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
downloadFile 直接传入重命名好的路径可以解决
function saveFile (src) { let newPath = `${wx.env.USER_DATA_PATH}/filename.xls` uni.downloadFile({ url: src, //仅为示例,并非真实的资源 filePath: newPath, //指定目录是为了重命名 success: res => { if (res.statusCode === 200) { uni.openDocument({ filePath: newPath, showMenu: true, success: function (res) { uni.hideLoading() } }) } } }) }
看右边的相关问题,已经有人给出方案了 https://developers.weixin.qq.com/community/develop/doc/0004cebab0c7807df7778adec51400?_at=1566292965141
这个问题还是存在,没有解决。。。
2020年了,这个问题还在