一个组件以某种方式呈现在所有URL中的所有位置

时间:2017-10-25 19:24:28

标签: reactjs

我是反应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 / haha​​hahahaha&#34;也将呈现&#34; QuestionTest&#34;成分

是因为某些js被缓存了吗?

我非常感谢任何帮助!这件事让我发疯了

0 个答案:

没有答案