我是 React-Native 的新手。并且我正在尝试开发一个音频应用程序,用户应该能够点击列表中的任何音频,并且音频应该播放 onPress()
这是我的代码
sound = new Sound('http://example.com/xyz.mp3');
playSound () {
this.sound.play();
};
pauseSound () {
this.sound.pause();
};
playFile (x1) {
sound = new Sound(x1);
this.playSound();
}
当我用新文件名 x1 调用 playFile(x1) 时,它会给出错误:
Attempted to assign to readonly property.
有没有办法为声音变量 onPress重新分配一个新值?或者任何其他简单的解决这个重新分配问题的方法?