- getLocation方法偶现getLocation:fail:timeout?
线上稳定的服务,最近也没有发版; 今天上午开始很多用户获取定位偶现失败,日志里面看报错是 getLocation:fail:timeout。 日志显示99.9%都是安卓端 联系不到客服,工作人员帮忙看看
2023-07-19 - 切全屏就最小化然后闪退?
切全屏就最小化然后闪退
2023-04-04 - 安卓版本微信,页面跳转后wx-open-launch报错launch:fail_check fail
"launch:fail_check fail" ios正常,第一次近页面可以,切换页面就异常
2022-03-11 - wx-open-launch-app安卓切换网页报错launch:fail_check fail?
wx-open-launch-app安卓切换网页报错launch:fail_check fail。 在ios环境运行正常,安卓环境中,打开的A网页唤醒正常,但是点击按钮切换到B页面就会报错launch:fail_check fail,此时再次回到A页面依然可以唤醒成功。
2022-03-09 - wx-open-launch-app唤醒launch:fail?
wx-open-launch-app唤醒launch:fail 检查了各种参数都是正常的。 现在在开发者工具上成功的,在ios真机上面没有弹框,点击直接提示launch:fail 代码如下 const WechatOpenApp = (props: any) => { const launchBtn = useRef<HTMLButtonElement>(null!); useEffect(() => { if (!IS_WECHAT) { return; } const ready = () => { console.log('wx ready'); }; const launch = (e: any) => { console.log('wx launch', e); }; const error = (e: any) => { console.log('wx error', e); Toast.show({ content: '微信唤醒服务失败,错误信息:' + e.detail.errMsg, }); }; const ref_ = launchBtn.current; ref_.addEventListener('ready', ready); ref_.addEventListener('launch', launch); ref_.addEventListener('error', error); return () => { ref_.removeEventListener('ready', ready); ref_.removeEventListener('launch', launch); ref_.removeEventListener('error', error); }; }, []); const style = { position: 'absolute', top: 0, left: 0, right: 0, bottom: 0 }; return IS_WECHAT ? ( <wx-open-launch-app ref={launchBtn} id="launch-btn" appid={WECHAT_OPEN_APP_ID} extinfo={encodeURIComponent(window.location.href)} style={style} > <script type="text/wxtag-template"> <button ></button> </script> </wx-open-launch-app> ) : null; };
2021-11-23 - 长列表recycle-view recycle-item宽高设置无效
https://developers.weixin.qq.com/miniprogram/dev/extended/component-plus/recycle-view.html 长列表宽高设置无效 this.ctx = createRecycleContext({ id: 'recycleId', dataKey: 'recycleList', page: this, itemSize: { width: wx.getSystemInfoSync().windowWidth, height: 78 } })
2021-02-02 - canvas画布在ios上面白屏?
ios14 调试工具在ios直接爆 promise rejection TypeError: o.Canvas is not a constructor 网上说不ios没法打开调试模式 那么现在ios上面的bug改怎么定位 canvas画图失败,在安卓上面正常
2020-12-17