小程序同声传译语音播报功能
买泛域名SSL证书 送5斤装现摘猕猴桃一箱、同时提供技开源商城搭建免费技术支持。
泛域名ssl证书 239元1年送1个月、单域名39元1年,Sectigo(原Comodo证书)全球可信证书,强大的兼容性,高度安全性,如有问题7天内可退、可开发票
加微信VX 18718058521 备注SSL证书
【腾讯云】2核2G4M云服务器新老同享99元/年,续费同价
泛域名ssl证书 239元1年送1个月、单域名39元1年,Sectigo(原Comodo证书)全球可信证书,强大的兼容性,高度安全性,如有问题7天内可退、可开发票
加微信VX 18718058521 备注SSL证书
【腾讯云】2核2G4M云服务器新老同享99元/年,续费同价
项目中有需求,需要把文字用语音播报,看文档查资料总结
// app.json "plugins": { "WechatSI": { "version": "0.0.7", "provider": "wx069ba97219f66d99" } }
<view bindtap="test">{{content}}</view> 1 // index.js 代码 data: { content: '测试语音播报', src: '' }, onReady() { this.innerAudioContext = wx.createInnerAudioContext() console.log(this.innerAudioContext, '121') }, test() { let that = this; var plugin = requirePlugin("WechatSI") plugin.textToSpeech({ lang: "zh_CN", tts: true, content: that.data.content, success: function(res) { console.log(res.filename) that.setData({ src: res.filename }) //调用自动播放 that.innerAudioContext.src = that.data.src; that.innerAudioContext.play(); }, fail: function(res) { console.log("fail tts", res) } }) },