- AR的OSD检测,Marker移出镜头后updateAnchors还在一直更新?
this.session.on('addAnchors', anchors => { const anchor = anchors[0] const { width, height } = this.data console.log('addAnchors') if (anchor) { this.setData({ frameShow: true, frameX: anchor.origin.x * width, frameY: anchor.origin.y * height, frameWidth: anchor.size.width * width, frameHeight: anchor.size.height * height, }) } }) this.session.on('updateAnchors', anchors => { const anchor = anchors[0] const { width, height } = this.data if (anchor) { this.setData({ frameX: anchor.origin.x * width, frameY: anchor.origin.y * height, frameWidth: anchor.size.width * width, frameHeight: anchor.size.height * height, }) } }) this.session.on('removeAnchors', anchors => { this.setData({ frameShow: false, }) })
09-28 - pc版微信打开小程序,接口content-type被转化成text格式?
小程序请求的接口,content-type是默认是json格式的,然后用电脑打开的时候被转成text格式了导致获取数据失败你们遇到吗?
2023-12-12 - 获取unionid问题?
由于公众号和小程序已经关联,需要获取unionid,了解到要去开放平台登录,然后神奇的事就是,忘记密码的时候说邮箱未注册,注册的时候又说邮箱被占用,怎么搞?
2023-07-28