DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> node.js中的url.parse方法教程使用說明詳解
node.js中的url.parse方法教程使用說明詳解
編輯:關於JavaScript     

方法說明:

講一個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'
}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved