我正在尝试在nuxt应用程序(ssr)中播放音频,但出现错误。
WHILE expression DO
statements
END WHILE
如果我在方法中编写此代码块,则只需更改isPlaying值即可。 如果我评论process.server我有错误。 如果我以计算形式编写此代码块,则会收到此错误:
playOrPause() {
this.isPlaying = !this.isPlaying;
if (this.isPlaying) {
if (process.server) {
this.audio.play();
console.log('play');
}
} else {
if (process.server) {
this.audio.pause();
console.log('pause');
}
}
},
我该怎么办?