當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js urlObject.path用法及代碼示例


在本文中,我們將學習 urlObject.path API。 urlObject.path API 屬性是路徑名和搜索組件的串聯。路徑名是指 URL 中的文件路徑,搜索組件是指具有固定限製的查詢和哈希字符串,例如問號 (?) 或哈希 (#) 字符。不執行路徑解碼。

示例:讓我們考慮一個 URL 'http://user:pass@sub.example.com:8080/p/a/t/h?query=string#hash'

用法: urlObject.path
返回:'/p/a/t/h?query=string'

urlObject.path 由 url.parse() 函數返回後返回‘/p/a/t/h?query=string’。

示例 1:Index.js

Javascript


//Importing url module
const http = require('url'); 
     
// Creating a demo URL 
const myURL = 
'http://user:pass@sub.example.com:8080/p/a/t/h?query=string#hash'; 
  
// Parsing the Address
var q = http.parse(myURL, true);    
  
// Displaying the path  
console.log(q.path);    

執行命令:

node index.js

控製台輸出:

/p/a/t/h?query=string

示例2:(更改路徑)

Javascript


//Importing the url module
const http = require('url'); 
     
// Creating a demo URL 
const myURL = 
'http://user:pass@sub.example.com:8080/p/a/t/h?query=string#hash'; 
  
var q = http.parse(myURL, true);    
  
// Display path value of myURL before change 
console.log("Before Change");  
console.log(q.path);    
console.log(); 
  
// Changing the path
q.path='/s/k/t/j?query=abc@gmail.com' 
  
// Printing the changed path
console.log("After Change"); 
console.log(q.path);

執行命令:

node index.js

控製台輸出:

Before Change
/p/a/t/h?query=string

After Change
/s/k/t/j?query=abc@gmail.com

相關用法


注:本文由純淨天空篩選整理自dassohom5大神的英文原創作品 Node.js urlObject.path Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。