不在onShow和onLoad调用,也增加了定时器,还是不行啊
wx.hideLoading 在安卓机中无法关闭wx.showLoading我在封装的公用请求方法中放入了这个两个api,请求调用之前调用wx.showLoading,在complete回调中调用 wx.hideLoading,但是在页面中请求成功没有正常的关闭wx.showLoading [图片] [图片][图片]
2020-01-02[图片] [图片] { "navigationBarTitleText": "识别来源", "pageOrientation": "landscape", "usingComponents": { "authorize": "/components/authorize/authorize" } } 打开图片 previewImage: function(e) { var current = e.target.dataset.src wx.previewImage({ current: current, urls: this.imageList }) }, wx.previewImage 这个是新页面,没法设置横屏吗?但是我整个小程序也设置横屏,图片浏览时也是变成竖屏,打开文档也是坚屏
pageOrientation 设置横屏当小程序设置横屏后 previewImage这个浏览图片时还是会变成坚屏
2019-07-29不是因为QQ浏览器,我QQ浏览器卸了还是那样,要点好几次才能打开,每次都返回打开成功
openDocument 每次都有执行成功,但是文件经常打不开,要点好几次才能[图片] 每次都执行打开成功,但是文件就是没有打开,要点好几次才会成功打开一次 wx.downloadFile({ url:'.........pdf', success: (res) => { wx.hideLoading(); wx.showLoading({ title: '正在打开文件...', mask:true, }); if (res.statusCode === 200) { var filePath = res.tempFilePath; wx.openDocument({ filePath: filePath, fileType: 'pdf', success: function (res) { wx.hideLoading(); console.log(res); console.log('打开文档成功'); }, fail(res) { wx.showLoading({ title: '打开文档失败', mask:true, }); console.log(res); } }); } }, fail: (res) => { wx.showToast({ title: "下载失败", mask:true, icon: 'none' }); } });
2019-07-20我的也是一直等待进程,在win7可以, win10就不行 [图片]
为什么微信开发工具的远程调试不能用?点远程调试后 一直等待进程?是需要进行什么操作吗?
2018-11-10