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


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


借助urlObject.auth()方法,我們可以在主機名中找到身份驗證參數。此方法返回參數字符串。

用法: urlObject.auth()
返回: Returns the string of authentication parameter.

範例1:在這個例子中urlObject.auth()方法,我們能夠從主機名中提取用戶名和密碼。


// importing the module 'url'  
const url = require('url'); 
    
var adr =  
'https://username=jitender:password=geeks@www.geeksforgeeks.com'; 
  
// Parse the address:
var q = url.parse(adr, true); 
  
/* The parse method returns an object containing 
 URL properties */
console.log(q.auth);

輸出:

username=jitender:password=geeks

範例2:

// importing the module 'url'  
const url = require('url'); 
    
var adr = 
'https://username=author:password=truegeek@www.gfg.com'; 
  
// Parse the address:
var q = url.parse(adr, true); 
  
/* The parse method returns an object containing 
 URL properties */
console.log(q.search);

輸出:

username=author:password=truegeek


相關用法


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