在浏览器中按 F5 时出现问题。
我在 react-router 中定义了路由:
<Route name="realestatesPrefiltered" path="realestatesPrefiltered/:search/:type" handler={RealEstatesPage}/>
并在 node.js 上路由
app.use(route.get("/realestatesPrefiltered/:search/:type", getLayout));
但是当我按 F5 时,我看到空白页,为什么?
我有另一条没有参数的路线。
<Route name="realestates" handler={RealEstatesPage}/>
app.use(route.get("/realestates", getLayout));
一切正常。