//监听plusready事件
document.addEventListener("plusready", function(){
// 监听语音识别事件
plus.speech.addEventListener("start", function(){
text = '';
}, false);
plus.speech.addEventListener("recognition", function(e){
text += e.result;
}, false);
plus.speech.addEventListener("end", function(){
alert("Success: "+text);
}, false);
}, false );
var text='';
function startRecognize() {
var options = {};
text = "";
plus.speech.startRecognize(options, function(s){
text += s;
// setTimeout( ajax_post(text), 10000 );
alert(text);
// ajax_post(s);
}, function(e){
alert("语音识别失败:"+e.message);
});
}
安卓端可以监测语音识别结束事件,IOS死活不能识别
1 个回复
8***@qq.com - lisp
问题还存在吗?