【Node.js】URL 模块

自动重启服务器的插件nodemon: npm i -g nodemon。或者 node-dev 也可以:npm i -g node-dev

parse,format,resolve 为旧版写法。

parse

js 复制代码
import url from 'url'
const urlString = 'https://www.baidu.com:443/ad/index.html?id=8&name=mouse#tag=110'
const parsedStr = url.parse(urlString)
console.log(parsedStr)

使用 const parsedStr = url.parse(urlString, true) 时,会将 query 转换为对象的形式:

format

js 复制代码
import url from 'url'
const urlObject = {
  protocol: 'https:',
  slashes: true,
  auth: null,
  host: 'www.baidu.com:443',
  port: '443',
  hostname: 'www.baidu.com',
  hash: '#tag=110',
  search: '?id=8&name=mouse',
  query: { id: '8', name: 'mouse' },
  pathname: '/ad/index.html',
  path: '/ad/index.html?id=8&name=mouse'
}
const parsedObj = url.format(urlObject)
console.log(parsedObj)

resolve

js 复制代码
import url from 'url'
// url.resolve(from, to)
var a = url.resolve('/one/two/three', 'four')
var e = url.resolve('/one/two/three/', 'four')
var b = url.resolve('http://example.com/', '/one')
var c = url.resolve('http://example.com/one', '/two')
var d = url.resolve('http://example.com/one/', 'three')
console.log(a + "," + e + "," + b + "," + c + "," + d)

总结一下就是:1. 没有域名的地址,在地址最后一个 / 后进行拼接。2. 有域名的地址,to 含有 / ,直接拼接到域名之后,没有/,拼接到 from 的后面。

新版写法 new URL。

js 复制代码
import http from 'http'
import url from 'url'
// 创建本地服务器接收数据
const server = http.createServer((req, res) => {
  const myUrl = new URL(req.url, 'http://127.0.0.1:3000')
  console.log(myUrl)
  res.writeHead(200, { 
    'Content-Type': 'application/json' 
  })
  res.end(JSON.stringify({
    data: "hello"
  }))
})
server.listen(8000,()=> {
  console.log("server is running")
})
js 复制代码
const myURL = new URL('/foo', 'https://example.org/');
// https://example.org/foo

查询参数:

js 复制代码
const myURL = new URL('https://example.org/abc?foo=~bar');
console.log(myURL.search);  // ?foo=~bar

其他用法都在官方文档,写的很清楚。Node.js 中文网

相关推荐
前端付豪6 小时前
必知 Express和 MVC
前端·node.js·全栈
特别橙的橙汁6 小时前
Node.js 调用可执行文件时的 stdout 缓冲区问题
前端·node.js·swift
alamhubb7 小时前
反感pnpm的全链路污染?可以了解下这个对原项目零侵入,零修改完全兼容npm的monorepo工具
前端·javascript·node.js
程序员agions10 小时前
Node.js 爬虫实战指南(三):分布式爬虫架构,让你的爬虫飞起来
分布式·爬虫·node.js
鲨莎分不晴10 小时前
PM2 是什么?一篇讲清 Node.js 进程管理器的文章
node.js
程序员agions11 小时前
Node.js 爬虫实战指南(四):反反爬策略大全,和网站斗智斗勇
爬虫·node.js
程序员爱钓鱼12 小时前
Node.js 编程实战:博客系统 —— 数据库设计
前端·后端·node.js
程序员agions12 小时前
Node.js 爬虫实战指南(二):动态页面爬取,Puppeteer 大显身手
爬虫·node.js
Direction_Wind14 小时前
抖音视频下载,直播间监控,直播间发言采集,最新加密算法
python·node.js
奶糖的次元空间1 天前
带你用 Javascript 生成器玩转「会暂停」的函数
node.js