我正在尝试学习节点js,因此我使用了以下示例并在codesandbox中实现。问题是,我无法在浏览器console.log(req.body);
中看到控制台。
module.exports = function(app, db) {
app.post("/notes", (req, res) => {
// You'll create your note here.
console.log(req.body);
res.send("Hello");
});
};
codesandbox中是否有任何问题,我该如何解决?