当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。