- UploadTask.onProgressUpdate 在IOS真机调试的时候, 不触发?
在模拟器上可以正常实现, 但是在ios真机调试的时候, 上传成功了, 但是onProgressUpdate没有被触发, 是为什么? [图片] let uploadTask = wx.uploadFile({ url: BASE_UPLOAD_FILE, filePath: item.path, name: 'fileInput', success(res) { let info = res.data ? JSON.parse(res.data) : {} let file = info.fileJson || {}; resolve(file); }, fail(err) { console.log(err); }, complete(res) { console.log('uploadFile complete: ', res); }, }); uploadTask.onProgressUpdate((res) => { console.log('res.progress: ', res.progress); });
04-28 - MapContext.addGroundOverlay 添加两个图层后,图层级别不生效?
在使用 MapContext.addGroundOverlay 添加多个图层后,后加载完成的都会被覆盖,设置属性 zindex也不生效,是什么原因? [图片] this.mapContext = wx.createMapContext('mapContent'); this.mapContext.addGroundOverlay({ id: 1000, src: 'xxx', bounds: { // 西南角经纬度 southwest: { latitude: 40.89595, longitude: 113.1608156 }, // 东北角经纬度 northeast: { latitude: 40.91118, longitude: 113.17452 } }, visible: true, zIndex: 99, opacity: 1 }); this.mapContext.addGroundOverlay({ id: 2000, src: 'xxx', bounds: { // 西南角经纬度 southwest: { latitude: 40.87595, longitude: 113.1608156 }, // 东北角经纬度 northeast: { latitude: 40.91518, longitude: 113.17452 } }, visible: true, zIndex: 9, opacity: 1 });
2022-07-02 - 腾讯地图如何实现 掩膜 效果?
大佬们,腾讯地图如何实现 掩膜 效果? 只知道在arcgis中叫掩膜,效果类似遮罩,就是在区域外的地图用蒙版遮起来不显示
2022-03-23 - macOS 使用camera开发者工具闪退
使用macOS系统开发小程序,使用camera组件,开发者工具总是闪退,开通权限也不行 macOS:11.6 开发者工具:1.05.2201242 <template> <view> <view class="" v-if="isAuth"> <camera device-position="back" flash="auto" @error="error" style="width: 100%; height: 500upx;"> <cover-image src="../../static/scan-frame/scan-img.png" class="scan-img"></cover-image> </camera> </view> <view class="scan-text">请将XXX放置白色框内</view> <button type="primary" @click="takePhoto">拍照</button> <image mode="widthFix" class="photos-box" :src="src"></image> </view> </template> <script> export default { data() { return { src: '', isAuth: false }; }, onLoad() { let _ = this; wx.getSetting({ success(res) { if (!res.authSetting['scope.camera']) { wx.authorize({ scope: 'scope.camera', success() { _.isAuth = true; } }); } } }); }, methods: { takePhoto() { const ctx = uni.createCameraContext(); ctx.takePhoto({ quality: 'high', success: res => { this.src = res.tempImagePath; /* 返回调用页面并把图片URL传递过去 */ /* let pages = getCurrentPages(); let prevPage = pages[pages.length - 2]; prevPage.setData({ "image": res.tempImagePath, }) uni.navigateBack(); */ /* 调用页面获取图片URL方法 */ /* let pages = getCurrentPages(); let currPage = pages[pages.length-1]; if(typeof(currPage.data.image) != undefined && currPage.data.image != null){ console.log('获取图片:', currPage.data.image) } */ } }); }, error(e) { console.log(e.detail); } } }; </script> <style> .scan-img { opacity: 0.4; width: 100%; height: 500upx; } .scan-text { font-size: 20px; text-align: center; line-height: 60upx; } </style>
2022-02-22 - 腾讯地图实现自定义瓦片只能通过webview来实现吗?
微信小程序是否支持瓦片?还是只能通过h5嵌套方式实现?
2022-02-17 - 使用uniapp开发小程序,uniapp更新代码后,在微信开发者工具中不更新代码?
开发者工具版本号:1.05.2201242, Hbuilder X版本号:3.3.10.20220124 问题描述:Hbuilder X编辑代码后,在微信开发者工具中无法实现热加载,页面显示异常,截图如下: 第一次显示 [图片] 更新代码后显示 [图片]
2022-02-09 - 小程序 真机测试报错 MiniProgramError readFileSync:fail?
小程序真机调试报如下错误(目前就华为30、华为p40出现此问题),别的机型暂未出现 [图片] 部分代码(图片转base64): [图片]
2020-07-10 - 9月30日1点半左右小程序官方接口调用没有返回报连接错误?
授权接口点击了很多次才成功,然后打印wx.logon,没有请求 [图片] [图片] [图片]
2019-09-30 - 小程序体验版支持国外用户体验吗?
开发的小程序,体验用户有国外的,反馈说是登录不了,有点闪退,有的授权不了,就想到了是不是国外不支持,有大神知道吗?
2018-11-01 - 真机和模拟器显示不同统一
在模拟器上显示的对不齐,在真机上对其了,这个有误差吧? 模拟器 [图片] 真机iphone6 [图片]
2018-10-08