nodejs中的路徑和url操作

2022-09-17 22:12:13 字數 983 閱讀 2236

const path = require('path')  //

路徑模組

const url = require('url') //

url模組

console.log(__dirname) //

__dirname獲取當前檔案絕對路徑(不包含檔名)

console.log(__filename) //

__filename獲取當前檔案絕對路徑(包含檔名)

連線多個路徑字串為乙個規範的路徑

連線多個路徑字串為乙個規範的路徑

解析多個路徑字串為乙個絕對路徑

console.log(path.parse(__filename)) //

解析路徑字串為乙個路徑資訊物件

console.log(path.basename(__filename)); //

獲取檔名

console.log(path.extname(__filename)); //

獲取副檔名

console.log(path.dirname(__filename)); //

獲取檔案路徑

let obj = url.parse('', true) //

解析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和url引數值

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

Nodejs的url模組方法

nodejs的url模組方法 nodejs裡面的乙個簡單的模組,url模組。這個url的模組要使用的話需要先引入。若只是在命令列裡比如cmd或git bash 等使用url這個模組的話,是不需要require進來的。直接使用便可。我也不知道為啥不用require const這個關鍵字是es6裡面定義...