小程序
小游戏
企业微信
微信支付
扫描小程序码分享
文件下载时,文件都能够正常下载,有返回文件临时路径。word,pdf格式的文件能够正常打开,但打开excel文件时打不开文件。官方的同学,能帮忙看看问题吗?
word文档打开效果
excel文件打开效果
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
有没有遇到iOS打开word文档,后缀名由doc变更为dot的?
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wxml:
<view>
<button type='primary' style='margin:20rpx' bindtap='downLoad'>.xlsx文档下载</button>
</view>
js:
downLoad: function (e) {
wx.downloadFile({
url: "https://testresource.dscq.com/group1/M00/01/95/rBACel2ByH2AHK8mAAA5J296xWg38.xlsx",
// url: url,
success: function (res) {
console.log(res);
var rr = res.tempFilePath;
wx.openDocument({
filePath: rr,
fileType: 'xlsx',
console.log('文档打开成功')
},
fail: function (res) {
console.log("文档打开失败")
complete: function () {
}
});
})
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
要使用真实的AppID,我最开始使用touristappid,能够正常下载打开,用上真实的AppID就不行了
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
有没有遇到iOS打开word文档,后缀名由doc变更为dot的?
wxml:
<view>
<button type='primary' style='margin:20rpx' bindtap='downLoad'>.xlsx文档下载</button>
</view>
js:
downLoad: function (e) {
wx.downloadFile({
url: "https://testresource.dscq.com/group1/M00/01/95/rBACel2ByH2AHK8mAAA5J296xWg38.xlsx",
// url: url,
success: function (res) {
console.log(res);
var rr = res.tempFilePath;
wx.openDocument({
filePath: rr,
fileType: 'xlsx',
success: function (res) {
console.log('文档打开成功')
},
fail: function (res) {
console.log("文档打开失败")
},
complete: function () {
}
});
},
complete: function () {
}
})
}
麻烦提供能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)
要使用真实的AppID,我最开始使用touristappid,能够正常下载打开,用上真实的AppID就不行了