1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | // 音乐监听函数 var that = this ; wx.onBackgroundAudioPlay( function () { that.setData({ isPlayingMusic: true }) }); wx.onBackgroundAudioPause( function () { that.setData({ isPlayingMusic: false }) }); // 音乐播放 onMusicTap: function (event) { var CurrentPostId = this .data.CurrentPostId; var postData = postsData.postList[CurrentPostId]; var isPlayingMusic = this .data.isPlayingMusic; if (isPlayingMusic) { wx.pauseBackgroundAudio(); this .setData({ isPlayingMusic : false }) } else { wx.playBackgroundAudio({ dataUrl: postData.music.url, title: postData.music.title, coverImgUrl: postData.music.coverImg, }) this .setData({ isPlayingMusic : true }) } }, |
4年同步微信官方迭代,累计20000+人学习, 比微信官方更火爆!
了解课程