我想在页面启动的时候,播放音频,成功了
onLoad: function(options) {
const innerAudioContext = wx.createInnerAudioContext()
innerAudioContext.src = options.url
innerAudioContext.play()
},
想在卸载页面时,停止,但是失败了
onUnload: function() {
const innerAudioContext = wx.createInnerAudioContext()
innerAudioContext.stop()
innerAudioContext.destroy()
},
我猜想可能不是一个实例了,但是该如何解决呢?0.0
微信小程序开发问题解答
微信小程序开发者回答:
那你把 const innerAudioContext = wx.createInnerAudioContext() 写在Page({})外层呢
本文网址:http://www.91bianli.com/weixinxiaochengxu/24210.html