我正在尝试播放和音频文件,但我想动态加载文件,而不必对我的项目文件夹 assets/audio 中的每个文件的导入进行硬编码。
下面的代码在我使用导入时有效,但在我使用“文件”时无效。
const Sound = require('react-native-sound');
import t1 from './assets/audio/t1.mp3';
import t2 from './assets/audio/t2.mp3';
Sound.setCategory('Playback', true); // true = mixWithOthers
export const playSound = () => {
const file = './assets/audio/t1.mp3';
// const s = new Sound(file, (error) => { // does not work
const s = new Sound(t1, (error) => { // works
if (error) {
console.log('error', error);
return;
}
s.play(() => {
s.release()
});
});
};
如何在运行时提供文件名,这样我就不需要导入每个音频文件?