http模块 获取http请求报文中的路径 与 查询字符串

虽然request.url已包含属性和查询字符串,但使用不便,若只需其中一个不好提取,于是用到了如下路径和字符串的单独查询方法:

方法一:

一、获取路径

例如:我在启动谷歌端口时输入http://127.0.0.1:9000 后接了 "/search?keyword=111" 我想要查询到url路径为search字符串为111。方法如下:

1.导入url模块

const url=require('url');

2.创建服务对象

3.运用url.parse解析查询字符串为一个对象

const server=http.createServer((request,response)=>{
    response.end('url'); //end设置响应体
    // console.log(request.url); 
//虽然request.url已包含属性和查询字符串 /search?keyword=5&num=1 /favicon.ico  但使用不便,若只需其中一个不好提取,于是用到了如下路径和字符串的单独查询方法:
    // 2.使用url.parse()方法解析request.url里面的内容
//url.parse() 方法接受两个参数:
     //参数一:要解析的URL字符串。
     //参数二:布尔值true/false ,表示是否要解析查询字符串为一个对象。如果为 true,则URL的查询部分(通常是?后面的部分)将被解析为一个键值对象。
    let res=url.parse(request.url,true); 
    // console.log(res); //输出可以看到 路径为pathname: '/search', pathname: '/favicon.ico',  后接true,使查询字符串变成了一个对象
let pathname=res.pathname;
    console.log(pathname); //  /search  /favicon.ico   可以看到pathname里就是我们所要的路径
});
//启动服务
server.listen(9000,()=>{ 
    console.log('服务已启动...');
});

二、获取查询字符串

// 1.导入url模块
const url=require('url');
// 创建服务对象:
const server=http.createServer((request,response)=>{
    response.end('url'); //end设置响应体
    let res=url.parse(request.url,true); 
    let keyword=res.query.keyword;
//我们输出上文的 console.log(res);可以看到 查询字符串是 query: [Object: null prototype] { keyword: '5', num: '1' }的形式的,所以是.query.keyword
    console.log(keyword); //5 undefined  第一个url的keyword为5,第二个url里面没有包含keyword这个参数所以为undefined
});
server.listen(9000,()=>{ 
    console.log('服务已启动...');
});

方法二:

一、获取路径

const http=require('http');
const server=http.createServer((request,response)=>{
    response.end('url new');
// 一、获取路径:
// (1)实例化一个URL对象 必须由域名或ip、路径与字符串组成
// let url=new URL('http://www.xxx.com/search?a=100&b=200'); 
//或者newURL('http://127.0.0.1:9000','search?a=100&b=200')
let url=new URL(request.url,'http://www.xxx.com/search?'); 
//或者new URL('http://127.0.0.1:9000','search?a=100&b=200')
// console.log(url);
// 输出路径
console.log(url.pathname); // /search /favicon.ico
});


server.listen(9000,()=>{ 
    console.log('服务已启动...');
});
//注意启动谷歌端口时输入http://127.0.0.1:9000/search?keyword=111; 才能查询到url路径为search字符串为111

二、获取查询字符串

// 获取http请求报文中的请求路径与查询字符串2:***
const http=require('http');

const server=http.createServer((request,response)=>{
    response.end('url new');
// (1)实例化一个URL对象 必须由域名或ip、路径与字符串组成
let url=new URL(request.url,'http://www.xxx.com/search?'); 
// 二、查询字符串:
// 输出keyword查询字符串
// 如下search属性里是一个字符串形式的查询字符串,有点不方便。所以我们使用searchParams这个对象里面的keyword属性
console.log(url.searchParams.get('keyword')); //  /search 5   /favicon.ico null
});

server.listen(9000,()=>{ 
    console.log('服务已启动...');
});
//注意启动谷歌端口时输入http://127.0.0.1:9000/search?keyword=111; 才能查询到url路径为search字符串为111

  • 12
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

想想aw

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值