2***@qq.com
2***@qq.com
  • 发布:2025-02-21 15:19
  • 更新:2025-02-21 15:19
  • 阅读:88

uni.createInnerAudioContext()再真机上无法将音频地址赋值到上下文的src属性上,同时音频的时长获取一直都是0

分类:uni-app

使用场景是再微信开发者工具中是没问题的,但是再微信开发者工具上的真机调试的时候发现无法获取音频时长,也无法将获取到的音频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
})
}

2025-02-21 15:19 负责人:无 分享
已邀请:

要回复问题请先登录注册