小程序
小游戏
企业微信
微信支付
扫描小程序码分享
无法打开pdf格式文件。
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
您好楼主,fileType:可以多种文件类型下载吗?例如:text文档、ppt、pdf、rar等等
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
更新:将下载文件的地址添加上:.pdf后缀不报错了,但是打开是白页。
文件扩展名是否没加上.pdf?
看下这个类型是和后台一致
可参考 https://blog.csdn.net/qq_37949737/article/details/86589989
Taro.downloadFile({
// 示例 url,并非真实存在
url: url,
success: function (res) {
console.info(res);
const filePath = res.tempFilePath;
Taro.openDocument({
filePath: filePath,
console.log('打开文档成功')
Taro.hideLoading() // 关闭loading
},
fail:res=>{
}
})
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
您好楼主,fileType:可以多种文件类型下载吗?例如:text文档、ppt、pdf、rar等等
更新:将下载文件的地址添加上:.pdf后缀不报错了,但是打开是白页。
文件扩展名是否没加上.pdf?
看下这个类型是和后台一致
可参考 https://blog.csdn.net/qq_37949737/article/details/86589989
Taro.downloadFile({
// 示例 url,并非真实存在
url: url,
success: function (res) {
console.info(res);
const filePath = res.tempFilePath;
Taro.openDocument({
filePath: filePath,
success: function (res) {
console.log('打开文档成功')
Taro.hideLoading() // 关闭loading
},
fail:res=>{
console.info(res);
Taro.hideLoading() // 关闭loading
}
})
}
})