在currentSong进行改变的时候,他还是能播放,新值和旧值的id不同,必须this.$refs.audio.play();就可以不哪进行播放

来源:7-17 播放器模式切换功能实现(中)

weixin_慕虎2325182

2020-06-10

watch: {
currentSong(newSong, oldSong) {
if (newSong.id === oldSong.id) {
return; //判断新的id是否等于老的id为真,返回
}
this.KaTeX parse error: Expected '}', got 'EOF' at end of input: …{ this.refs.audio.play();
});
},
//暂停与播放
playing(newplaying) {
let audio = this.refs.audio;this.refs.audio; this.refs.audio;this.nextTick(() => {
newplaying ? audio.play() : audio.pause();
});
}
}

写回答

1回答

ustbhuangyi

2020-06-10

不好意思,我没有看懂你的问题。。

0
3
weixin_慕虎2325182
回复
ustbhuangyi
监听的id数据不一致
2020-06-11
共3条回复

Vue2.0高级应用教学实战,开发企业级移动端音乐Web App

Vue.js高级知识应用大集合,实战企业级APP,教你搞定组件化开发。

5432 学习 · 3804 问题

查看课程