0
試圖建立反應路由陣營路由器,最大調用堆棧大小超過
這是我的主要index.js文件
class App extends React.Component{
constructor(props) {
super(props);
this.state = {
};
}
render(){
return (
<Router history={hashHistory}>
<Route path={'/'} component={App}>
<Route path={'/quizzes'} component={Quiz}> </Route>
</Route>
</Router>
)
};
};
ReactDOM.render(<App />,
document.getElementById('content'));
我得到的錯誤說時,遇到了一些奇怪的錯誤Uncaught RangeError: Maximum call stack size exceeded
不知道爲什麼
<路由路徑= { '/'}成分= {應用}>心不是那個遞歸? –
,但如果我刪除它,我得到'[react-router]位置「/」與任何路由不匹配# –
沒關係我現在解決了。設置一個不同的位置/ –