REACT概念证明工作,试图播放MP3声音字节。我在Stack Overflow条目的答案部分找到了一个示例,但它使用URL作为声音字节。我希望使用存储在React src文件夹下的mp3文件。
这里是我正在使用的代码的链接。请查看“答案”部分中的代码。
https://stackoverflow.com/a/525803617355276/
我希望能够使用React项目中的文件,而不是链接到存储在其他位置的声音字节。
非常感谢!
答案 0 :(得分:0)
Unfortunately your link seems to be broken.
If I get you right, you want to play a sound file in a react app. A possible approach would be to reference a mp3 file in an <audio />
element via a relative path.
In a brief google search this tutorial popped up: https://medium.com/@jerrysbusiness/playing-a-sound-file-in-a-react-project-bd0ad079ad93.
Hope that helps!