我是反应js的初学者
在我的index.js中,我将不同的URL映射到不同的组件
<BrowserRouter>
<div>
<Route path="/" component={App} />
<Route path="/signInSignUp" component={SignInSignUp} />
<Route path="/questions" component={questions} />
<Route path="/cookieTest" component={cookieTest} />
<Route path="/timeSlotFormTest" component={timeSlotFormTest} />
<Route Path="/QuestionTest" component={QuestionTest} />
<Route path='/ScreenBlockerTest' component={ScreenBlockerTest}/>
</div>
</BrowserRouter>
我想我的命名方式并不重要。问题是组件&#34; QuestionTest&#34;正在所有网址中呈现,即使是那些我没有定义的网址,例如&#34; localhostL:xxx / hahahahahaha&#34;也将呈现&#34; QuestionTest&#34;成分
是因为某些js被缓存了吗?
我非常感谢任何帮助!这件事让我发疯了