使用wx.getBackgroundAudioManager()管理音频播放,在使用seek方法的时候,在开发工具中没问题,但在真机调试下却无效,不能跳到指定时间,会重新开始播放,是因为什么呢?
const innerAudioContext = wx.getBackgroundAudioManager(); //在app.js里定义
globalData: {
innerAudioContext: innerAudioContext,
}
------------------------------
var innerAudioContext = app.globalData.innerAudioContext; //在music.js里定义
if (options.MID == app.globalData.mid){
var tt = app.globalData.time; //要跳转到的时间点
console.log(tt); //138.613392
console.log(typeof(tt)); //number
innerAudioContext.seek(tt);
}
然后没有跳到指定的时间点