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


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

示例 1:下麵的例子說明了使用urlObejct.hrefNode.js 中的方法。

javascript


// 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:在此示例中,我們將看到 urlObject.href 的使用

javascript


// 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
const parse = require('url-parse'); 
const 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 

注意:上述程序將使用以下命令編譯並運行節點app.js命令。

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


相關用法


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