我为localhost设置了路由:8080 / song / 9其中9是动态加载页面的任意数字。这是我的应用程序中唯一的路由类型,当我检查stylesheet.css时,它是完全空的。它成功加载它但由于某种原因它是空白的?
如果我去任何其他路线它会成功加载,这往往让我相信它与动态路由有关。这是我为路线设置的代码。
return (
<div className="container-fluid">
<Router>
<div>
<Route exact = {true} path={"/" } component = {Home}/>
<Route exact = {true} path={"/login"} component = {Login}/>
<Route exact = {true} path={"/register"} component ={Register}/>
<Route exact = {true} path={"/song/:songId"} component={SongEditor}/>
<Route exact = {true} path={"/create"} component={CreateSong}/>
</div>
</Router>
</div>
);
我已尝试将/ exact设置为false以及/ song / songId路径,但我仍然遇到问题