使用场景是再微信开发者工具中是没问题的,但是再微信开发者工具上的真机调试的时候发现无法获取音频时长,也无法将获取到的音频url赋值到上下文的src中
代码是这样的
再父组件传递了一个对象给子组件,然后子组件使用监听器接收
watch() {
deep: true,
immediate: true,
handle(newVal) {
if(newVal?.src) {
this.handlePlayer(newVal.src)
}
}
}
然后再方法中进行处理赋值
handlePlayer(url) {
if(this.player) {
this.player.destroy()
this.player = null
}
this.player = uni.createInnerAudioContext()
this.player.src = url
this.player.onCanplay(res => {
let musicTime = Math.floor(this.player.duration)
console.log('视频时长===>', musicTime, this.player.duration) // 这里打印的this.player.duration是0
})
}
0 个回复