這個模塊含有一些系列方法函數處理和解析URL
使用require('url')
使用瀏覽器
這個方法返回包含具體路由信息的對象
沒有就返回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,完整的路徑ui
pathname,路徑名字不包含參數url
host比hostname多一個端口號code
同理這個函數就是根據obj的信息構造一個路徑orm
var obj = { protocol: 'https', host: 'www.cycok.com:4000', pathname: 'index' } url.format(obj) //returns 'https://www.cycok.com:4000/index'
提供一個基礎的路徑,還有要去的路徑,解析出瀏覽器最終會去的路徑對象
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'