(Express)你好,我正试图通过邮递员向localhost发送一个非常简单的post请求,但它在发送时卡住了。要明确的是,我第一次尝试它,它工作,但在添加猫鼬实现后,它不再工作,甚至在注释更改后。
const router = require('express').Router();
router.post('/', (req, res) => {
console.log("Got here");
res.send("ciao");
});
app.listen(port, () => {
console.log("Server running on port: " + port);
});
如果它工作正常,我会看到"到达这里">
邮差应用
我使用的是mac版的邮差8.0.2桌面应用程序,我试过删除并重新安装。
编辑我试着创建另一个项目,它再次工作,我会调查我做错了什么,也许添加一个评论。
添加router作为中间件到express,下面是你更新后的代码
const router = require('express').Router();
router.post('/', (req, res) => {
console.log("Got here");
res.send("ciao");
});
app.use('/', router);
app.listen(port, () => {
console.log("Server running on port: " + port)
});