小程序
小游戏
企业微信
微信支付
扫描小程序码分享
正常编译模式下可以,但是真机调试模式就不行,最后一张截图里面的代码就不执行
3 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
没复现,请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
小程序开了开屏广告后,这个方法无法执行,不知道现在修复了没有
没配置合法域名吧,ios执行?
看不见配置啥,提问问题不要带变量,没人知道你传的什么
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
没复现,请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
url: "https://tutors.net.cn:8080/books/download/void?pdfPath=/opt/work/lanting/resources/books/&fileName=ilovepdf_merged.pdf",
filePath: "http://usr/ilovepdf_merged.pdf",
success: function (res) {
var filePath = res.filePath
wx.openDocument({
filePath: filePath,
showMenu: true,
fileType: 'pdf',
fail: function (res) {
console.log('打开文件失败',res)
},
})
},
fail: function (res) {
console.log('下载文件失败',res)
}
});
var percent = 0
downloadTask.onProgressUpdate(res=>{
percent = res.totalBytesWritten / 1000000
wx.hideToast()
wx.showToast({
title: "已下载"+percent +"MB, 请耐心等待...",
icon: 'none',
duration: 5000,
})
})
开发者工具的常规编译模式可以显示下载进度,也能打开文件。但是真机模式下不能显示下载进度。这个代码片段模式连文件都打开不了了,郁闷死了
小程序开了开屏广告后,这个方法无法执行,不知道现在修复了没有
没配置合法域名吧,ios执行?
看不见配置啥,提问问题不要带变量,没人知道你传的什么
url: "https://xxx:8080/books/download/void?pdfPath=/opt/work/lanting/resources/books&fileName=tmp.pdf",
filePath: "http://usr/tmp.pdf",
success: function (res) {
var filePath = res.filePath
wx.openDocument({
filePath: filePath,
showMenu: true,
fileType: 'pdf',
fail: function (res) {
console.log('打开文件失败',res)
},
})
},
fail: function (res) {
console.log('下载文件失败',res)
}
});
var percent = 0
downloadTask.onProgressUpdate(res=>{
percent = res.totalBytesWritten / 1000000
wx.hideToast()
wx.showToast({
title: "已下载"+percent +"MB, 请耐心等待...",
icon: 'none',
duration: 5000,
})
})