小程序
小游戏
企业微信
微信支付
扫描小程序码分享
参考别人解决https://developers.weixin.qq.com/community/develop/doc/00088255a94580d4142bc32e656400的时候看到的解决方案
但是这样如果不同项目下 文件夹名称一样 会自动打开旧文件 而不会打开新文件
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
wx.downloadFile(
{
url:url,
// filePath:wx.env.USER_DATA_PATH+'/'+this.data.fileName,
success: function (res) {
console.log(res)
const filePath = res.tempFilePath;
// const filePath=res.filePath;
console.log(filePath);
wx.openDocument({
filePath: filePath,
fileType: 'xlsx',
showMenu: true,
console.log('打开文档成功')
wx.hideLoading()
},
fail: function (res) {
console.log(res);
complete: function (res) {
}
})
这样写 打开的数据就正常 但是文件夹名称是乱码的 把注释切回来 filepath换了 出来的就是改之后的文件夹名 但是会打开旧文件 而不是新下载的文件
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
把名字改成选择文件的名字呐
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
wx.downloadFile(
{
url:url,
// filePath:wx.env.USER_DATA_PATH+'/'+this.data.fileName,
success: function (res) {
console.log(res)
const filePath = res.tempFilePath;
// const filePath=res.filePath;
console.log(filePath);
wx.openDocument({
filePath: filePath,
fileType: 'xlsx',
showMenu: true,
success: function (res) {
console.log('打开文档成功')
wx.hideLoading()
},
fail: function (res) {
console.log(res);
},
complete: function (res) {
console.log(res);
}
})
},
这样写 打开的数据就正常 但是文件夹名称是乱码的 把注释切回来 filepath换了 出来的就是改之后的文件夹名 但是会打开旧文件 而不是新下载的文件
把名字改成选择文件的名字呐