nodejs獲取當前url和url引數值

2022-04-02 07:01:20 字數 2054 閱讀 2149

//

需要使用的模組 http url

當前url http://

返回001

console.log(arg.bb);//

返回002

//然後就可以根據所得到的資料處理了

}).listen(8888);//

建立伺服器並監聽埠

獲取特定url引數值

//取到的值是:http://localhost:8888/select?aa=001&bb=002

console.log(p.protocol); //

取到的值是:http:

console.log( p.hostname);//

取到的值是:locahost

console.log(p.host);//

取到的值是:localhost:8888

console.log(p.port);//

取到的值是:8888

console.log(p.path);//

取到的值是:/select?aa=001&bb=002

console.log(p.hash);//

取到的值是:null

console.log(p.query);//

取到的值是:aa=001

在此值得注意的是當語句 是 var p = url.parse(testurl, true) 時,p.query則返回的是如:這樣的物件, 直接列印p.query則返回 [object object],這時我們可以這樣 寫: console.log(p.query.aa); //取到的值是:001

console.log(p.pathname);//取到的值是:/select

下面附上js的獲取方法:

當前url   

nodejs獲取當前url和url引數值

需要使用的模組 http url 當前url http 返回001 console.log arg.bb 返回002 然後就可以根據所得到的資料處理了 listen 8888 建立伺服器並監聽埠 獲取特定url引數值 取到的值是 http localhost 8888 select?aa 001 b...

NodeJs 獲取url資訊

取到的值是 http localhost 8888 select?aa 001 bb 002 console.log p.protocol 取到的值是 http console.log p.hostname 取到的值是 locahost console.log p.host 取到的值是 localh...

js 獲取當前url

設定或獲取物件指定的檔名或路徑。設定或獲取整個 url 為字串。設定或獲取與 url 關聯的埠號碼。設定或獲取 url 的協議部分。設定或獲取 href 屬性中在井號 後面的分段。設定或獲取 location 或 url 的 hostname 和 port 號碼。設定或獲取 href 屬性中跟在問號...