node 中,url.parse(req.url).pathname 和 req.url 的区别

var http = require("http");
var fs = require("fs");
var url = require("url");

var server = http.createServer(function(req,res){
    var pathname = url.parse(req.url).pathname;
    console.log(pathname);
    // console.log(req.url);

    fs.readFile("./static/login.html",function(err,data){
        res.writeHead(200, {
            'Content-Type': 'text/html;charset=UTF8'
        });
        res.end(data);

    });

});
server.listen(8080,'127.0.0.1');

引入url模块,

url.parse(req.url).pathname  只获取请求的路径名 执行结果如下图:

node 中,url.parse(req.url).pathname 和 req.url 的区别_第1张图片

未引入url模块,req.url的结果:

console.log(req.url);  获取url的所有信息,包括后面的参数

node 中,url.parse(req.url).pathname 和 req.url 的区别_第2张图片


另:windows系统,资源管理器是“\”,网址是“/”


你可能感兴趣的:(node)