- 在组件里使用wx.pageScrollTo的selector失效?
在页面的组件里执行这个方法失效,complete方法没有执行。selector元素也是当前组件的元素 getScrollInfoParent (e) { console.log('接受', e) wx.pageScrollTo({ selector: '.rule', duration: 300, complete: (res) => { console.log('res', res) } }) },
2022-12-30 - 微信小程序已经被禁用为什么还能分享?
ios手机体验和生产码还可以调起分享,但是分享出去的小程序 点击进去显示白屏,查看原因是因为 webview里的url被encodeURIcomponent()
2022-08-23 - 微信小程序webview 长按无法识别企业微信群码?
微信小程序webview 里的h5页面图片是企业微信群码, 长按识别偶现识别不出来
2022-07-04 - 微信小程序wx.getLocation 大批量出现走fail情况
wx.getLocation({ type: 'gcj02', success: resolve, fail: ({ errMsg }) => { console.log('errM=>>>>', errMsg) log.error(errMsg) if (errMsg.indexOf('system') > -1) { const content = `请开启微信定位:${isIOS() ? '手机系统设置—微信—定位权限' : '手机系统设置—应用管理—微信—定位权限'}。定位开启后可刷新页面。` return modal('未开启微信定位', content, '刷新', () => refresh(path)) } if (errMsg.indexOf('auth') > -1) { return modal('未打开小程序定位', '找不到您的位置,请开启定位', '开启定位', () => authen(path)) } // if (msg.indexOf('ERROR_NOCELL&WIFI_LOCATIONSWITCHOFF') > -1) {} modal('未开启手机GPS', '请打开手机定位权限(屏幕下拉权限中的位置权限)', '刷新', () => refresh(path)) } })) 拦截到的日志 getLocation:fail:internal error invalid android context getLocation:fail:ERROR_NETWORK getLocation:fail:ERROR_NOCELL&WIFI_LOCATIONSWITCHOFF
2022-03-05 - 小程序调用wx.chooseImage在拍照页面出现黑屏问题?
调用api名称:wx.chooseImage 具体效果如下: [图片] 手机型号VIVO Y31s 微信版本号: 8.0.11 用户微信号: 18903225579
2021-09-15 - 关注公众号组件样式问题
https://developers.weixin.qq.com/miniprogram/dev/component/official-account.html 点击关注组件时 出现加载中弹窗,此弹窗位置过于偏下。 [图片]
2021-01-25 - 微信网页长按识别二维码不好用?
我们用h5开发的微信网页,长按识别页面的二维码时而好用时而不好用
2019-12-19