站长资讯网
最全最丰富的资讯网站

实例讲解node中http模块和url模块的使用方法

一、http模块

const http = require('http') http.createServer(function(req,res) {     console.log(req.url) //获取url里面携带的参数     res.writeHead(200,{'Content-type':"text/html;charset='utf-8'"}) //设置响应头     res.write("<head><meta charset='UTF-8'></head>") //设置编码,不设置的话就会出现中文乱码     res.write('this is node js中国加油') //给页面响应信息     res.end() //响应结束}).listen(8081) //端口号
当我把url改为http://127.0.0.1:8081/aaa时候
console.log(req.url)输出的内容

实例讲解node中http模块和url模块的使用方法

赞(0)
分享到: 更多 (0)
网站地图   沪ICP备18035694号-2    沪公网安备31011702889846号