现在有解决的吗?遇到同样问题
pc端微信createInnerAudioContext不能播放音频?let innerAudioContext = wx.createInnerAudioContext() innerAudioContext.autoplay = true; //2.3.0以下的版本静音下也能播放音频 2.3.0以上的就失效了 innerAudioContext.obeyMuteSwitch = false; //2.3.0以上的版本静音下也能播放音频 if(typeof wx.setInnerAudioOption === 'function'){ wx.setInnerAudioOption({ mixWithOther:false, obeyMuteSwitch:false }) } innerAudioContext.src = audioAddr + '?t=' + Math.random(); console.log('设置播放链接 %s' ,innerAudioContext.duration) [图片] 稍微长一点音频就出问题 ypeError: Cannot read properties of undefined (reading 'duration') https://yibaowen-1253664862.cos.ap-guangzhou.myqcloud.com/audio/6deff38643c08c927a22e2ba98b58287.mp3 官方能排查一下 这是什么问题呀
2023-11-22我也遇到这个问题,解决了吗?
InnerAudioContext切换src时会同时播放多条if (Boolean(src)) { innerAudioContext.autoplay=true innerAudioContext.src = src 先停止当前音频,然后切换音频文件后,原来停止掉的音频会自动播放,同时会播放多条音频,怎么处理?
2022-01-12不嵌套使用的时候,也不起作用是怎么回事
[再次告知]组件嵌套时 pageLifetimes的 show 不会被触发。自定义组件嵌套在另外一个自定义组件里面,则被嵌套的组件 pageLifetimes 里面的show,hide就不会被触发。 已经有人说过的一次了,代码片段别人也提供了的。 https://developers.weixin.qq.com/community/develop/doc/0002607cb289f880b4b798d3e51400?highLine=pageLifetimes 我再来一次。
2019-03-25