我在使用ReactJS和react-router模塊構建同構應用程序,以便在服務器端進行路由。ReactJS react-router RoutingContext
從它guide有關使用服務器上的反應路由器:
(req, res) => {
match({ routes, location: req.url }, (error, redirectLocation, renderProps) => {
//...
else if (renderProps) {
res.status(200).send(renderToString(<RoutingContext {...renderProps} />))
}
//...
})
}
有關於這RoutingContext幾乎沒有任何信息。所以對我來說它的工作原理有點不清楚。是來自react-router(在其他路線上使用)的Router
組件的某種替代品嗎?
任何幫助理解將非常感激!
我把它從這裏https://github.com/rackt/react-router/blob/latest/docs/guides/advanced/ServerRendering .MD。現在開始使用2.0.0-rc4還是繼續使用1.0.3是否有意義? –
你一定要等到2.0.0 – Florent