小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在开发模式中可以打开,但是在线上版本中以微信文档预览窗口打开显示文件损坏
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请问有解决这个问题的办法了吗
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
请问你打开的文件格式是什么?PC端打开xlsx格式也遇到这个问题了,手机端正常的
是不是官方不支持的原因https://developers.weixin.qq.com/community/develop/doc/0006a6b6f2cf60404299d51ab56809
PC端这个接口我印象中一直就有问题,官方以前也说过,包括pdf很多人都反馈打不开,提示文件错误。
代码熟悉了解清楚后,再自己改
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html
tempFilePath wx.downloadFile({ // 示例 url,并非真实存在 url: 'http://example.com/somefile.pdf', success: function (res) { const filePath = res.tempFilePath wx.openDocument({ filePath: filePath, success: function (res) { console.log('打开文档成功') } }) } })
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.saveFile.html
保存文件到本地。注意:saveFile 会把临时文件移动,因此调用成功后传入的 tempFilePath 将不可用
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请问有解决这个问题的办法了吗
请问你打开的文件格式是什么?PC端打开xlsx格式也遇到这个问题了,手机端正常的
是不是官方不支持的原因https://developers.weixin.qq.com/community/develop/doc/0006a6b6f2cf60404299d51ab56809
PC端这个接口我印象中一直就有问题,官方以前也说过,包括pdf很多人都反馈打不开,提示文件错误。
代码熟悉了解清楚后,再自己改
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html
tempFilePath wx.downloadFile({ // 示例 url,并非真实存在 url: 'http://example.com/somefile.pdf', success: function (res) { const filePath = res.tempFilePath wx.openDocument({ filePath: filePath, success: function (res) { console.log('打开文档成功') } }) } })
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.saveFile.html
保存文件到本地。注意:saveFile 会把临时文件移动,因此调用成功后传入的 tempFilePath 将不可用