易软
易软
  • 发布:2021-10-11 16:27
  • 更新:2022-06-30 15:59
  • 阅读:1444

uniapp使用百度语音识别,识别失败

分类:uni-app

已在百度智能云上进行的应用的创建并正确配置了,并将账号升级为了企业账号,QPS限制已变为10了。但是在应用中调用的时候,要不报

{  
    "code": 4004,  
    "message": "App name unknown[(-3004)6: No permission to access data]"  
}

要不报

{  
    "code": -3011,  
    "message": "[(-3011)received down http, without up http]"  
}

反正一直报错,都不知道是哪出现了问题,语音调用自己封装了一个方法

speech: {  
        start: function(option, callBack) {  
            // #ifdef APP-PLUS  
            var options = {  
                continue: false,  
                engine: "baidu",  
                lang: "zh-cn",  
                nbest: 1,  
                punctuation: true,  
                userInterface: true  
            }  
            for (var p in option) options[p] = option[p];  
            plus.speech.startRecognize(options,  
                (res) => {  
                    callBack(res)  
                }, (e) => {  
                    console.log(e);  
                    uni.showToast({  
                        icon: "none",  
                        title: "语音识别失败"  
                    });  
                }  
            );  
            // #endif  
        }  
    }

有知道问题怎么解决的人吗?

2021-10-11 16:27 负责人:无 分享
已邀请:
久智环境

久智环境

我跟你遇到了同样的问题,有人来看一下嘛

x***@sina.com

x***@sina.com

解决了吗 遇到同样的问题

该问题目前已经被锁定, 无法添加新回复