0
如何組織動態路由器 2級我有結構這樣react router如何組織2級動態路由器?
<Router history={browserHistory} >
<Route path='/' component={App} data={DISTRICT}>
<IndexRoute component={Home} />
<Route path='/:district' component={District}/>
<Route path='/:district/:directory' component={Directory}/>
</Route>
<Route path='*' component={NotFound} />
</Router>
對區內所有工作的目錄 好 但不工作如何渲染目錄的組成部分?
App.js
render() {
return (
<div>
<Header/>
{ this.renderChildren() }
<Footer />
</div>
);
}
我收到相同的結果,也許它是因爲 我添加url params使用點擊 像這樣browserHistory.push(this.slug)? – Arthur
現在嘗試在'params'之前刪除'/',如答案 –
不幸的是它不起作用 – Arthur