已在百度智能云上进行的应用的创建并正确配置了,并将账号升级为了企业账号,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
}
}
有知道问题怎么解决的人吗?
2 个回复
久智环境
我跟你遇到了同样的问题,有人来看一下嘛
x***@sina.com
解决了吗 遇到同样的问题