"permissions": { "uni.voice": {} } 复制代码 在需要使用语音播报功能的页面中,引入uni-voice模块: import uniVoice from '@/uni_modules/uni-voice/uni-voice.js' 复制代码 在需要触发语音播报的事件中,调用uni-voice模块的speak方法: uniVoice.speak({ text: '播报的内容', success() { console.log...