React-静态资源获取

React 的基本目录结构为:

所有要请求的静态文件, 应放在 public 目录下.

public 目录是获取静态文件时的 /, 即根目录.

比如 src/homepage/music.jsx 的文件内容为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import AudioPlayer from 'react-h5-audio-player';
import 'react-h5-audio-player/lib/styles.css';

const Player = () => {
return (
<AudioPlayer
autoPlay
src="/test.mp3"
onPlay={console.log("onPlay")}
// other props here
/>
);
}

export default Player

这里请求 /test.mp3, 实际上就是请求 public/test.mp3 文件.


React-静态资源获取
http://example.com/2024/08/22/React-静态资源获取/
作者
Jie
发布于
2024年8月22日
许可协议