在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
不好意思,我没有看懂你的问题。。
032020-06-11
相似问题