📜  Node.js urlObject.hostname API

📅  最后修改于: 2022-05-13 01:56:50.920000             🧑  作者: Mango

Node.js urlObject.hostname API

url.hostname 是 url 模块中类 URL 的内置应用程序编程接口,用于获取和设置 URL 的主机名部分。 url.hostname 不包括端口号。

句法:

url.hostname

它通过单值url关联,该单值 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