1
我正在使用react-router 1.0.2。我有一個表示產品目錄的組件目錄,我不想爲每個不同的產品編寫不同的目錄,而是重新使用現有的產品目錄,並將路由器中的productType作爲prop傳遞。我該如何用這個版本的react-router來做到這一點?到目前爲止,我已經試過這個沒有成功...謝謝將道具傳遞給組件react-router 1.0.x
ReactDOM.render(
<Provider store={store}>
<Router history={history}>
<Route path="/" component={App}>
<IndexRoute component={Home}/>
<Route path="phones" component={Catalog} productType="phones"/>
<Route path="about" component={About}/>
<Route path="login" component={Login}/>
</Route>
</Router>
</Provider>,
document.getElementById('main')
);
啊,所以你的建議把它作爲網址PARAM而不是道具。優雅。我喜歡。謝謝 – fgonzalez
很高興我可以幫助:) –