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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。