路线app.post不适用于快递

时间:2018-06-24 17:11:17

标签: javascript express routes

我知道这个问题已经被问了很多,但是我找不到我的解决方案

我的package.json看起来像这样:

"main": "server.js",

server.js具有

app.post('/', (req, res) => {
  console.log('found the route');
})

为什么我去localhost:8000时未记录日志找到路由?

express已安装等,只是一个非常基本的项目

const port = 8000;

app.listen(port, () => {
  console.log('We are live on ' + port);
});

0 个答案:

没有答案