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


Node.js urlObject.host用法及代码示例


URL模块提供了用于URL解析和解析的实用程序。
URL字符串是一个结构化的字符串,其中包含各种有意义的组件。解析后,将返回一个URL对象,其中包含每个组件的属性。

url.host()以字符串形式返回url中的主机名。例子:


http://localhost:8080/register
localhost:8080 - is the host name.
https://geeksforgeeks.org/practice
geeksforgeeks.org - is the host name.

在下面的示例中,我们首先创建一个URL对象。然后,在使用.host()函数之后,我们将获得URL中的主机名作为输出。

//Importing the url module 
const url=require('url'); 
  
//creating a new url object 
var link = new URL("https://google.com/coding_challenges"); 
  
//Using the .host() function to print the host name in the url 
console.log(link.host);
OUTPUT:
google.com


相关用法


注:本文由纯净天空筛选整理自mokshagna saiteja大神的英文原创作品 Node | urlObject.host API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。