摘要: 创建web服务器 const http = require("http"); //创建web服务器,app就是网站服务器对象 const app = http.createServer(); //当客户端有请求来的时候 app.on("request", (req, res) => { res.en 阅读全文
posted @ 2020-09-28 16:49 actorhuang 阅读(230) 评论(0) 推荐(0) 编辑