摘要: // 引用系统模块 const http = require('http'); // 创建web服务器 const app = http.createServer(); // 当客户端发送请求的时候 app.on('request', (req, res) => { // 响应 res.end('< 阅读全文
posted @ 2020-11-25 16:11 WP-WangPin 阅读(81) 评论(0) 推荐(0) 编辑