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' }
href,完整的路径
pathname,路径名字不包含参数
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'