在服务器端路由器上使用express-router和express

时间:2017-03-15 13:34:29

标签: reactjs express react-router webpage router

我正在使用React-router模块。 并且,React-router工作得非常好!

但问题是,如果我在Express路由器中设置路由器,那么它将收到错误。 前)

服务器端JS

import express from 'express';
var app = express();
app.use('/', express.static(__dirname + '/../public'));

我在快递的服务器端添加设置路由器

app.get('/test', function(res, req){
    res.send('test works!');
});

app.post('/postTest', function(res, req){
    res.send('post test work!');
});

但所有这些代码都有错误

-> Warning: [react-router] Location "/test" did not match any routes

我只是在服务器端设置路由器,但网络有错误。 我认为快递路由器在服务器上不起作用....

如何使用服务器端路由器?

我在HTML中使用POST方法,使用POST方法将数据传输到数据库。 所以我需要服务器端路由器...

如何使用带有react-router模块的服务器端路由器?

0 个答案:

没有答案