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

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

方法一:

一、获取路径

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

1.导入url模块

javascript 复制代码
const url=require('url');

2.创建服务对象

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

javascript 复制代码
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('服务已启动...');
});

二、获取查询字符串

javascript 复制代码
// 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('服务已启动...');
});

方法二:

一、获取路径

javascript 复制代码
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

二、获取查询字符串

javascript 复制代码
// 获取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
相关推荐
无责任此方_修行中10 分钟前
如何利用 pnpm 的安全控制功能防御 npm 供应链攻击
javascript·npm·node.js
允许部分打工人先富起来39 分钟前
在node项目中执行python脚本
前端·python·node.js
None32118 小时前
【NestJs】基于Redlock装饰器分布式锁设计与实现
后端·node.js
Gogo11211 天前
构建高性能 Node.js 集中式日志体系 (下篇):Pino + PM2 + OpenSearch 代码落地实战
node.js
小岛前端1 天前
Node.js 宣布重大调整,运行十年的规则要改了!
前端·node.js
前端付豪1 天前
Nest 项目小实践之前端注册登陆
前端·node.js·nestjs
YuMiao1 天前
gstatic连接问题导致Google Gemini / Studio页面乱码或图标缺失问题
服务器·网络协议
codingWhat2 天前
整理「祖传」代码,就是在开发脚手架?
前端·javascript·node.js
ServBay2 天前
Node.js、Bun 与 Deno,2026 年后端运行时选择指南
node.js·deno·bun
码路飞2 天前
Node.js 中间层我维护了两年,这周终于摊牌了——成本账单算完我人傻了
node.js