所以我试图使用react和托管github页面来创建我的投资组合,我读到github页面,您需要使用react-router-dom中的HashRouter,但是,我所有的链接都把我带到了我的家页面而不是其路径。
我注意到浏览器中的路径如下:http://localhost:3000/MyHumber#/
app.js:
\@
答案 0 :(得分:1)
使用准确的路径,不要忘记右斜杠
<Route exact path="/" component={Home} />
<Route exact path="/MyHumber/" component={MyHumber} />