我正在尝试使用cordova插件为我的应用程序构建一个测试“文本转语音”功能。
我添加了cordova.js文件和tts.js fil,并安装了cordova Text to Speech插件,cordova插件添加了cordova-plugin-texttospeech
我在示例中使用了以下代码
document.addEventListener('deviceready', function () {
// basic usage
TTS
.speak('hello, world!').then(function () {
alert('success');
}, function (reason) {
alert(reason);
});
}, false);
但是什么也没发生,我错过了什么吗?