js学习

nodejs之url模块使用

2019-04-06  本文已影响28人  沈祥佑

官方手册上面的一张图是这样子的:


url.png

这张图解释了一个url结构化成哪些部分,哪些部分又包含哪些部分

nodejs自带URL模块

url.parse()

url.parse(urlStr, [parseQueryString], [slashesDenoteHost])

将一个url地址结构化成为拥有上图属性的url对象。
url.parse第二个和第三个参数默认为false。

参数使用说明如下:

例如:

const url = require("url");
var urlstr = "http://localhost:8888/a?n=big&m=he&m=cc#hash";
var urlobj = url.parse(urlstr);
console.log(urlobj);

/*
 Url {
  protocol: 'http:',
  slashes: true,
  auth: null,
  host: 'localhost:8888',
  port: '8888',
  hostname: 'localhost',
  hash: '#hash',
  search: '?n=big&m=he&m=cc',
  query: 'n=big&m=he&m=cc',
  pathname: '/a',
  path: '/a?n=big&m=he&m=cc',
  href: 'http://localhost:8888/a?n=big&m=he&m=cc#hash' }
*/

第二个参数为true时 :

Url {
  protocol: 'http:',
  slashes: true,
  auth: null,
  host: 'localhost:8888',
  port: '8888',
  hostname: 'localhost',
  hash: '#hash',
  search: '?n=big&m=he&m=cc',
  query: { n: 'big', m: [ 'he', 'cc' ] },
  pathname: '/a',
  path: '/a?n=big&m=he&m=cc',
  href: 'http://localhost:8888/a?n=big&m=he&m=cc#hash' }

url模块化:url.format()

将一个url对象转换成一个url字符串,url对象中的属性为url.parse()产生的对象的属性。
url.parse()和url.format()互为逆操作。
例如:

let url = require('url');
let Url={
  protocol: 'http:',
  slashes: true,
  auth: null,
  host: 'localhost:8888',
  port: '8888',
  hostname: 'localhost',
  hash: '#hash',
  search: '?n=big&m=he&m=cc',
  query: { n: 'big', m: [ 'he', 'cc' ] },
  pathname: '/a',
  path: '/a?n=big&m=he&m=cc',
  href: 'http://localhost:8888/a?n=big&m=he&m=cc#hash' };
let str= url.format(Url);
console.log(str);
//http://localhost:8888/a?n=big&m=he&m=cc#hash

路径解析:url.resolve(from, to)

url.resolve()方法解决了目标URL相对于基本URL的方式类似于Web浏览器解决锚标记href。

 url.resolve('/one/two/three', 'four');
// '/one/two/four'

url.resolve('http://example.com/', '/one');
 // 'http://example.com/one'

url.resolve('http://example.com/one', '/two');
//'http://example.com/two'

上一篇 下一篇

猜你喜欢

热点阅读