##const wxAudio = new wx.createInnerAudioContext()
我在查看文档的时候发现了这个对象,使用之后没有出现音乐控件。觉得不错和大家分享一下。可以试试
onPlay: function() {
if (!this.data.playing) {
this.setData({
playing: true,
});
wxAudio.src = this.properties.music_url
wxAudio.play()
} else {
this.setData({
playing: false,
})
wxAudio.pause()
}
},
_isPlay: function () {
if (wxAudio.src == this.properties.music_url) {
this.setData({
playing: true
})
}
}