📜  Node.js urlObject.host API

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

Node.js urlObject.host API

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