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


Node.js URL.href用法及代碼示例


url.href是URL類的內置應用程序編程接口,其中url模塊具有獲取和設置序列化URL的函數。獲取href屬性的值等效於調用url.toString()方法。將此屬性的值設置為新值等同於使用新的URL(值)創建一個新的URL對象。每個URL對象的屬性都會被修改。

用法:

const url.href 

返回值:它獲取並設置序列化的URL。


以下示例程序旨在說明url.href方法的用法:

範例1:

// node program to demonstrate the  
// url.href API as Setter  
   
//importing the module 'url' 
const http = require('url'); 
   
// creating and initializing myURL 
const myURL = new URL('https://example.com:80/foo#ram'); 
   
// Display href value of myURL before change 
console.log("Before Change"); 
console.log(myURL.href); 
   
// assinging serialized URL 
// using href 
console.log(); 
myURL.href = 'https://example.com/bar'; 
   
// Display href value of myURL after change 
console.log("After Change"); 
console.log(myURL.href);

輸出

Before Change
https://example.com:80/foo#ram

After Change
https://example.com/bar

範例2:

// node program to demonstrate the  
// url.href API as Getter  
  
//importing the module 'url' 
const http = require('url'); 
  
// creating and initializing myURL 
const myURL = new URL('https://example.org/foo#ram'); 
  
// getting the serialized URL 
// using href 
const href = myURL.href; 
  
// Display hostname value  
console.log(href);

輸出:

https://example.org/foo#ram

注意:以上程序將使用Node中的myapp.js命令進行編譯和運行。

參考:
https://nodejs.org/api/url.html#url_url_href



相關用法


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