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


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


url.hostname是url模塊中類URL的內置應用程序編程接口,用於獲取和設置URL的主機名部分。 url.hostname不包含端口號。

用法:

url.hostname

它通過單一值url進行關聯,後者是由URL構造函數創建的對象。


例:

// Node program to demonstrate the   
// url.hostname API as both Getter and Setter   
      
// Imports only single export 'URl' 
// from url module using ES6 syntax 
const { URL } = require('url');   
      
// Creating and initializing myURL 
// object using URL constructor 
const myURL = new URL('https://gfg.org:80/foo#ram');  
      
// Display hostname value of myURL before change  
console.log("Before Change");  
console.log(myURL.hostname);  
   
console.log(''); 
   
// Updating hostname portion  
// using hostname method 
myURL.hostname = 'example2.com';  
      
// Display hostname value of myURL after updating  
console.log("After Change");  
console.log(myURL.hostname); 

輸出:

Before Change
gfg.org

After Change
geeksforgeeks.org

參考: https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_hostname



相關用法


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