console.log函数在快速路由内不起作用(node.js)

时间:2019-07-16 17:34:45

标签: javascript node.js express

我正在尝试使用console.log调试我的快速应用程序,但终端上没有任何输出。

app.js

var express     = require("express"),
    app         = express(),
    bodyParser  = require("body-parser");

app.use(bodyParser.urlencoded({extended: true}))
app.set("view engine", "ejs");

app.get("/",function(req,res){
    console.log("landing page");
    res.send("landing page");
});

app.listen(3000,function(){
    console.log("Server started!!")
});

输出:

$ node app.js
Server started!!

0 个答案:

没有答案