使用节点js的codeandbox不显示控制台输出

时间:2018-09-12 17:25:05

标签: javascript html node.js express console.log

我正在尝试学习节点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中是否有任何问题,我该如何解决?

0 个答案:

没有答案