4

我正在尝试使用 Chrome 网络语音 API 创建一个 PHP 网络应用程序。我总是遇到网络错误。但是,我有良好的网络连接。

window.SpeechRecognition = window.SpeechRecognition 
                               || window.webkitSpeechRecognition || null;
    if (window.SpeechRecognition === null) {
    } else {
        var recognizer = new window.SpeechRecognition();
        recognizer.continuous = false;
        recognizer.lang = 'en-US';
        recognizer.onstart = function() {
            recognizing = true;
        };
        recognizer.onresult = function(event) {
        };
    }
recognizer.onerror = function(event) { 
            alert(event.error);
            ignore_onend = true;
            if (event.error == 'not-allowed') {
                alert("Allow to access your microphone");
            }
            recognizer.stop();
            recognizer.start();
};

谢谢

4

1 回答 1

1

自上次 Google 更新以来我遇到了类似的问题,我确信上次更新中存在错误。在最新的 Google 搜索更新后,我在 RecognizerIntent 有类似的线程给出了错误我的 android 应用程序给出了识别网络错误。到那时,没有网络问题。总之,错误是 W/JavaNetConnection:无法获取连接状态。java.io.FileNotFoundException: https://www.google.com/m/voice-search/down?pair=6239918a-dc45-4eea-ac6f-b9bf8de57ced

于 2015-01-17T16:54:04.290 回答