小程序
小游戏
企业微信
微信支付
扫描小程序码分享
后端返回生成的下载链接,想要在小程序中下载pdf后用浏览器打开调用浏览器本身的打印功能。请问大家如何下载文件到本地,或者直接跳转浏览器打开?
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
下载用:wx.downloadFile
https://developers.weixin.qq.com/miniprogram/dev/api/network/download/wx.downloadFile.html
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
wx.downloadFile 用这个api下载,下载成功之后通过
if (sm.confirm) {
wx.shareFileMessage({
filePath: res.filePath,
success() { },
fail: console.error,
})
} else if (sm.cancel) {
wx.openDocument({
showMenu: true,
}
这两个api打开或者分享出去
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
下载用:wx.downloadFile
https://developers.weixin.qq.com/miniprogram/dev/api/network/download/wx.downloadFile.html
小程序里不支持用浏览器打开,可以用wx.openDocument打开
https://developers.weixin.qq.com/miniprogram/dev/api/file/wx.openDocument.html
wx.downloadFile 用这个api下载,下载成功之后通过
if (sm.confirm) {
wx.shareFileMessage({
filePath: res.filePath,
success() { },
fail: console.error,
})
} else if (sm.cancel) {
wx.openDocument({
filePath: res.filePath,
showMenu: true,
success() { },
fail: console.error,
})
}
这两个api打开或者分享出去