当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。