方法說明:
講一個URL字串轉換成物件並回傳。
文法:
url.parse(urlStr, [parseQueryString], [slashesDenoteHost])
接收參數:
urlStr
parseQueryString 為true時使用查詢模組分析查詢字串,預設為false
slashesDenoteHost
預設為false,//foo/bar 形式的字串將被解釋成 { pathname: ‘//foo/bar' }
如果設定成true,//foo/bar 形式的字串將被解釋成 { host: ‘foo', pathname: ‘/bar' }
範例:
var url = require('url');
var a = url.parse('http://example.com:8080/one?a=index&t=article&m=default');
console.log(a);
//輸出結果:
{
protocol : 'http' ,
auth : null ,
host : 'example.com:8080' ,
port : '8080' ,
hostname : 'example.com' ,
hash : null ,
search : '?a=index&t=article&m=default',
query : 'a=index&t=article&m=default',
pathname : '/one',
path : '/one?a=index&t=article&m=default',
href : 'http://example.com:8080/one?a=index&t=article&m=default'
}