原生Node.js静态资源服务器的大致配置思想注意:node-模块之间使用common.js规范,注意模块的引入与暴露思想:静态资源服务器!index.js:入口配置文件---服务器,先起个服务,node内置http.createServer(),记得最后配置一个端口号---获取浏览器请求的文件路径,http的内置参数(req.res) req.url 例如:/index.html---获...
http:再看http.get(url,(res)=>{let sum = ""; res.setEncoding('utf8'...