我使用React 15.0.2和React Router 2.4.0。 我想多PARAMS傳遞給我的路線,我不知道如何做到這一點的最好方式:使用React路由器的多個參數
<Route name="User" path="/user" component={UserPage}>
<Route name="addTaskModal" path="/user/manage:id" component={ManageTaskPage} />
</Route>
什麼是要的就是這樣的:
<Route name="User" path="/user" component={UserPage}>
<Route name="addTaskModal" path="/user/manage:id:type" component={ManageTaskPage} />
</Route>
也許就像'path =「/ user/manage /:id /:type」'? –
是的,謝謝你的回覆。我只是在想這個。還沒拿我的咖啡。需要開始我的大腦。 –