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
相关推荐
深圳佛手5 分钟前
几种限流算法介绍和使用场景
网络·算法
Halo_tjn7 分钟前
基于 Object 类及包装类的专项实验
java·开发语言·计算机
拾忆,想起16 分钟前
超时重传 vs 快速重传:TCP双保险如何拯救网络丢包?
java·开发语言·网络·数据库·网络协议·tcp/ip·php
@老蝴16 分钟前
Java EE - 线程的状态
开发语言·java-ee·intellij-idea
budingxiaomoli23 分钟前
多线程(一)
java·开发语言·jvm·java-ee
重铸码农荣光23 分钟前
从「[1,2,3].map (parseInt)」踩坑,吃透 JS 数组 map 与包装类核心逻辑
面试·node.js
2021_fc29 分钟前
WebSocket技术分享
网络·websocket·网络协议
Yue丶越42 分钟前
【C语言】深入理解指针(二)
c语言·开发语言·数据结构·算法·排序算法
zizisuo1 小时前
为什么TCP设计中要设计ACK不重传?
网络·网络协议·tcp/ip
偶像你挑的噻1 小时前
Linux应用开发-17-套接字
linux·网络·stm32·嵌入式硬件