安卓手机浏览器无法自动播放背景音乐,需要在mounted中强制播放auido.play()。如果是在微信环境下,需要额外处理。=!!userAgent.match(/\(i[^;]+;(U;)?CPU.+MacOSX/);constIS_IN_WX=/MicroMessenger/i.test(userAgent);if(ENV.IS_IN_WX){//是否微信环境if(ENV.IS_IN_IOS){changeAudioPlayStatus(true);changeAudioPlayStatus(false);}}else{changeAudioPlayStatus(true);}document.addEventListener('WeixinJSBridgeReady',()=>{//微信H5环境,监听WeixinJSBridgeReady事件,再次播放changeAudioPlayStatus(true);},false);
