时间:2019-05-07 来源:小程序工厂
wx.downloadFile({
url: “https://miniprgm.cnsis.org.cn/wechatwebservices/file_sis/orginamanual.pdf”,
success: function (res) {
console.log(res)
var Path = res.tempFilePath //返回的文件临时地址,用于后面打开本地预览所用
wx.openDocument({
filePath: Path,
success: function (res) {
console.log('打开成功');
}
})
},
fail: function (res) {
console.log(res);
}
});
WXML
当前K的值为3
IDE调试却显示找不到页面了??这是什么意思?这边测试是正常的
大哥看看我的问题https://developers.weixin.qq.com/community/develop/doc/000aa877bb8980c2e1874ed2e56000
不是,就是在微信开发IDE显示正常,然后远程调试,却显示找不到页面,会跳到腾讯的404页面
这边测试正常的,来个GIF图看看?
哦,我把微信重新安装了就好了,,还有一个是PDF不能预览,
SRC是PDF 地址,我也换过官方下载PDF,然后打开PDF的也不行
给个PDF地址测试一下
https://miniprgm.cnsis.org.cn/wechatwebservices/file_sis/orginamanual.pdf
不推荐用webview直接打开PDF哈
wx.downloadFile({
url: that.data.Url,
success: function (res) {
console.log(res)
var Path = res.tempFilePath //返回的文件临时地址,用于后面打开本地预览所用
wx.openDocument({
filePath: Path,
success: function (res) {
console.log('打开成功');
}
})
},
fail: function (res) {
console.log(res);
}
});
我采用这种模式,,真机没反应
但是IDE上面有反应,真机没有
真机没有是打不开?报什么错,提供一下代码片段
wx.downloadFile({url: “https://miniprgm.cnsis.org.cn/wechatwebservices/file_sis/orginamanual.pdf”,success: function (res) {console.log(res)var Path = res.tempFilePath //返回的文件临时地址,用于后面打开本地预览所用wx.openDocument({filePath: Path,success: function (res) {console.log('打开成功');}})},fail: function (res) {console.log(res);}});WXML
404是找不到这个文件吧
您看我的WXML我没有做任何的跳转啊
提供一下代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)