https://www.cnblogs.com/agen-su/articles/7762568.html
send就是向页面发送文本
module.exports = function (app) { app.get('/', function (req, res) { res.send("hello world!") }); }
2022-08-29 11:33:35
https://www.cnblogs.com/agen-su/articles/7762568.html
send就是向页面发送文本
module.exports = function (app) { app.get('/', function (req, res) { res.send("hello world!") }); }