- 微信同声传译插件,一直不执行onRecognize,这是什么问题啊?
async initRecord() { let that=this manager.stop() //有新的识别内容返回,则会调用此事件 manager.onRecognize = (res) => { console.log('onRecognize',res) let text = res.result that.setData({currentText:that.data.currentText+text}) } // 识别结束事件 manager.onStop = (res) => { console.log('onStop',res) let text = res.result if(text == '') { // 用户没有说话,可以做一下提示处理 this.showRecordEmptyTip() return } let newText=text.replace(/。/g, "").trim() let newArr=newText.split('和') that.setData({ currentText:that.data.currentText+text, totalTime:res.duration, }) } // 识别错误事件 manager.onError = (res) => { console.log(res,'onError') this.setData({ recording: false, bottomButtonDisabled: false, }) } },
2023-07-13 - 企业微信内第三方应用通过oath2登录后总是提示”现使用wk"
[图片]
2021-10-13