chatbot的textToSpeech已设置为true,机器人的回答,右边会出现一个小喇叭,点击后才会朗读回答内容,如何自动朗读回答内容呢?谢谢!
plugin.init({
appid: "RDwx805073e5a5ed51d4", //微信对话开放平台小程序插件appid
openid: userData._openid, // 小程序用户的openid,必填项
textToSpeech: true,
// guideList: [],
// background: "#eee",
// history: true,
// historySize: 60,
// navHeight: 0,
// robotHeader:"https://res.wx.qq.com/mmspraiweb_node/dist/static/miniprogrampageImages/talk/leftHeader.png",
userHeader: "", // userData.netPhoto, 用户头像,不传会弹出登录框
userName: "", // userData.netName,用户昵称,不传会弹出登录框
anonymous: true, // 是否允许匿名用户登录,版本1.2.9后生效, 默认为false,设为true时,未传递userName、userHeader两个字段时将弹出登录框
success: () => {
console.log('OK')
}, //非必填
fail: (error) => {}, //非必填
})