小程序
小游戏
企业微信
微信支付
扫描小程序码分享
问题如标题描述!
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
成功设置标题
参考代码:
openConfirmation(){ const { orderDetail } = this.data; wx.downloadFile({ url: `${此处是文件的链接}`, filePath: wx.env.USER_DATA_PATH + "/" + `${orderDetail.name}确认书.pdf`, success: res => { const filePath = res.filePath; wx.openDocument({ filePath: filePath, showMenu: true, fileType: 'pdf', success: function (res) { console.log('打开文档成功') } }) } }) }
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
有解决方法:wx.downloadFile + wx.openDocument
wx.downloadFile 的 filePath 参数可以指定存储路径、文件名称
https://developers.weixin.qq.com/community/develop/doc/000e24cbd9cce8383c282b71f5e400?_at=1594623914101
filePath: wx.env.USER_DATA_PATH + "/" + `${this.name}.pdf`,
.pdf不要省略
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
成功设置标题
参考代码:
openConfirmation(){ const { orderDetail } = this.data; wx.downloadFile({ url: `${此处是文件的链接}`, filePath: wx.env.USER_DATA_PATH + "/" + `${orderDetail.name}确认书.pdf`, success: res => { const filePath = res.filePath; wx.openDocument({ filePath: filePath, showMenu: true, fileType: 'pdf', success: function (res) { console.log('打开文档成功') } }) } }) }
有解决方法:wx.downloadFile + wx.openDocument
wx.downloadFile 的 filePath 参数可以指定存储路径、文件名称
https://developers.weixin.qq.com/community/develop/doc/000e24cbd9cce8383c282b71f5e400?_at=1594623914101
filePath: wx.env.USER_DATA_PATH + "/" + `${this.name}.pdf`,
.pdf不要省略