React 路由器仅适用于根路径
IT技术
reactjs
reactjs-flux
react-router
react-jsx
2021-04-29 05:44:25
1个回答
您必须配置您的服务器才能使用Router.HistoryLocation
——也就是说,无论路由如何,它都需要始终为您的 index.html 页面提供服务。
app.get('*', function (req, res) {
res.render('index');
});