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


Node.js urlObject.href用法及代碼示例


urlObject.href API用於返回完整的URL字符串以及協議(HTTP)和路徑名或其他搜索詞。

用法

urlObject.href
For example:'http://www.geeksforgeeks.com/login/password.html'

Here, Protocol = http
      Path = /login
      Host = 'www'
      File Name = password.html

以下示例程序旨在說明Node.js中urlObejct.href方法的使用:


範例1:

// Node program to demonstrate the  
// urlObject.href API as Setter 
  
// It will return a URL object 
const gfg = new URL('https://www.geeksforgeeks.com/login.html ');  
  
// Output the fetched url 
console.log(gfg.href); 

輸出:

 https://www.geeksforgeeks.com/login.html

範例2:

// Node program to demonstrate the   
// url.href API as Setter 
   
// Importing the module 'url-parse' 
  
// Use command 'npm install url-parse' in command 
// prompt to import this module 
var parse = require('url-parse');  
  
var url = parse('https://www.example.com:777/a/b?c=d&e=f#g '); 
  
console.log(url.href);

輸出:

 https://www.example.com:777/a/b?c=d&e=f#g 

注意:上麵的程序將使用node app.js命令編譯並運行。

參考: https://nodejs.org/api/url.html#url_urlobject_href



相關用法


注:本文由純淨天空篩選整理自Abhishek7大神的英文原創作品 Node | urlObject.href API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。