标签:文件 小程序 -- 程序 data http xxxx document success
wx.downloadFile({
url:"https://xxxxxx.pdf",
success(res){
console.log(res)
let data = res.tempFilePath;
wx.openDocument({
filePath:data,
fileType:‘pdf‘
})
}
})标签:文件 小程序 -- 程序 data http xxxx document success
原文地址:https://www.cnblogs.com/chenguiya/p/12564317.html