获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- wx.createInnerAudioContext 在小程序上无法播放也没报错,在h5上播放正常?
语法上也没什么错误啊,在h5上是能正常播放的,为什么到小程序上就不行呢? <script> export default { data() { return { music:'https://fqimg.i-mall.top/upload/bgmusic/10bfa5222413786380c168bc11c65a92.mp3', handler:null, } }, methods: { play(){ this.handler.play(); }, stop(){ this.handler.stop(); } }, onLoad() { this.$nextTick(() => { this.handler = uni.createInnerAudioContext(); this.handler.src = this.music; this.handler.play(); }) }, onUnload() { this.handler.destroy(); }, onHide() { this.stop(); }, onShow() { if(this.handler){ this.play(); } } } </script>
08-02 - JSAPI支付权限冻结,商户号:1503872491,请问如何解除?
JSAPI支付权限冻结,商户号:1503872491,请问如何解除
2021-08-10