this.currentSong.getLyric()这里的this.currentSong为什么调用getLyric()方法?
来源:7-20 播放器歌词数据解析
老虎校尉
2019-11-15
如题,说this.currentSong 是 Song 类的一个实例 在哪里挂载的呢
写回答
1回答
-
currentSong 是定义在 getters 中的
比如在 singer-detail 组件中会创建 songs,通过 createSong 方法和 processSongsUrl 一系列操作
songs 会传到 musiclist 组件中,然后当用户选择播放的时候会创建播放列表,更新 state.playlist。012019-11-18
相似问题