Node.js 官方URL模块简介

URL

这个模块含有一些系列要领函数处置惩罚和剖析URL
运用require('url')运用

parsing(string)

这个要领返回包括详细路由信息的对象
没有就返回null

url.parse('http://user:pass@host.com:8080/p/a/t/h?query=string')
{
  protocol: 'http:',
  slashes: true,
  auth: 'user:pass',
  host: 'host.com:8080',
  port: '8080',
  hostname: 'host.com',
  hash: null,
  search: '?query=string',
  query: 'query=string',
  pathname: '/p/a/t/h',
  path: '/p/a/t/h?query=string',
  href: 'http://user:pass@host.com:8080/p/a/t/h?query=string#hash' 
}
  1. href,完全的途径

  2. pathname,途径名字不包括参数

  3. host比hostname多一个端口号

format(urlObj)

同理这个函数就是依据obj的信息组织一个途径

var obj =
{ protocol: 'https',
  host: 'www.cycok.com:4000',
  pathname: 'index' 
}
url.format(obj)
//returns 'https://www.cycok.com:4000/index'

url.resolve(from, to)

供应一个基本的途径,另有要去的途径,剖析出浏览器终究会去的途径

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'
    原文作者:二胖手
    原文地址: https://segmentfault.com/a/1190000003874963
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞