node.js中的url.parse方法使用說明,node.jsurl.parse

來源:互聯網
上載者:User

node.js中的url.parse方法使用說明,node.jsurl.parse

方法說明:

講一個URL字串轉換成對象並返回。

文法:

複製代碼 代碼如下:
url.parse(urlStr, [parseQueryString], [slashesDenoteHost])

接收參數:

urlStr                                       url字串

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'
}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.