小程序
小游戏
企业微信
微信支付
扫描小程序码分享
写两个按钮,在传值传两组写死数据,调用可以预览不通的pdf;
写成活的数据,预览的都是第一次加载过的pdf??这是为什么??
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
let filename =
this
.literatureObj.cellTitle;
let fileUrl = res["data"]["downurl"]
let fileUrl = res[
"data"
][
"downurl"
]
// let filename = "XXXX";
// let fileUrl =
let fileType =
"pdf"
;
let content =
"https://XXXX/DownLoadFileHandler?fn="
+
encodeURIComponent(filename) +
"&sign="
fileType +
"&downurl="
encodeURIComponent(fileUrl);
wx.downloadFile({
url: content,
success:
function
(res) {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
fileType: fileType,
console.log(
'打开文档成功'
)
},
fail:
'打开失败'
console.log(res)
}
})
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注,楼主,想请教一下,PDF怎么上传预览~~谢谢
这个问题我不会
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
let filename =
this
.literatureObj.cellTitle;
let fileUrl = res[
"data"
][
"downurl"
]
// let filename = "XXXX";
// let fileUrl =
"XXXX";let fileType =
"pdf"
;
let content =
"https://XXXX/DownLoadFileHandler?fn="
+
encodeURIComponent(filename) +
"&sign="
+
fileType +
"&downurl="
+
encodeURIComponent(fileUrl);
wx.downloadFile({
url: content,
success:
function
(res) {
const filePath = res.tempFilePath
wx.openDocument({
filePath: filePath,
fileType: fileType,
success:
function
(res) {
console.log(
'打开文档成功'
)
},
fail:
function
(res) {
console.log(
'打开失败'
)
console.log(res)
}
})
}
})
关注,楼主,想请教一下,PDF怎么上传预览~~谢谢
这个问题我不会