小程序
小游戏
企业微信
微信支付
扫描小程序码分享
在开发者工具调试可以触发,但是在手机调试查看,事件没有触发起来,不知道怎么解决
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
playerpercent: function () {
// 监听播放拿取播放进度
backgroundAudioManager.onTimeUpdate(() => {
const currentTime = backgroundAudioManager.currentTime
this.setData({
percent: currentTime / this.data.audios.duration * 100
})
this.Audioscrolling();
// backgroundAudioManager.onEnded((res) => {
// this.buttonNext_song()
// })
wx.onBackgroundAudioStop(() => {
this.buttonNext_song()
// wx.onBackgroundAudioStop(() => {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
let that = this;
wx.getBackgroundAudioPlayerState({
success: function (res) {
var status = res.status
if (status == 1) {
that.setData({
isshow: false,
} else {
isshow: true,
}
that.playerpercent();
* 生命周期函数--监听页面隐藏
* 生命周期函数--监听页面卸载
onUnload: function () {
var audiolist = this.data.audio;
audiolist.percent = this.data.percent;
app.envet.publish("audiodata", this.data.audiolist);
* 用户点击右上角分享
那个属性一直触发不起,不知道什么原因
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
playerpercent: function () {
// 监听播放拿取播放进度
backgroundAudioManager.onTimeUpdate(() => {
const currentTime = backgroundAudioManager.currentTime
this.setData({
percent: currentTime / this.data.audios.duration * 100
})
this.Audioscrolling();
})
// backgroundAudioManager.onEnded((res) => {
// this.buttonNext_song()
// })
wx.onBackgroundAudioStop(() => {
this.buttonNext_song()
})
// wx.onBackgroundAudioStop(() => {
// this.buttonNext_song()
// })
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
let that = this;
wx.getBackgroundAudioPlayerState({
success: function (res) {
var status = res.status
if (status == 1) {
that.setData({
isshow: false,
})
} else {
that.setData({
isshow: true,
})
}
}
})
that.playerpercent();
},
/**
* 生命周期函数--监听页面隐藏
*/
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
var audiolist = this.data.audio;
audiolist.percent = this.data.percent;
app.envet.publish("audiodata", this.data.audiolist);
},
/**
* 用户点击右上角分享
*/
那个属性一直触发不起,不知道什么原因
你好,麻烦具体描述问题流程,提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html