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


Node.js urlObject.pathname用法及代码示例


借助 urlObject.pathname() 方法,我们可以找到给定主机名使用的路径名称。它包含从主机(带有端口)开始到查询或哈希组件开始之前的所有内容,这些组件由 ASCII 问号 (?) 或哈希 (#) 字符之一分隔。

用法:

urlObject.pathname()

返回:返回使用的路径名(即'/p/a/t/h')

示例 1:在这个例子中,我们将看到urlObject的使用。pathname()

javascript


const url = require('url'); 
     
const address =  
'https://u:p@www.example.com:777/a/b?c=d&e=f#g'; 
   
// Parse the address: 
const q = url.parse(address, true); 
   
/* The parse method returns an object containing 
 URL properties */
   
console.log(q.pathname);

输出:

/a/b

示例 2:在此示例中,我们将看到包含 URL 属性的对象

javascript


const url = require('url'); 
     
const address =  
'http://example.com/'; 
   
// Parse the address: 
const q = url.parse(address, true); 
   
/* The parse method returns an object containing 
 URL properties */
   
console.log(q.pathname);

输出:

/

支持的浏览器:

  • 谷歌浏览器
  • Edge
  • Opera
  • 苹果浏览器
  • Firefox

相关用法


注:本文由纯净天空筛选整理自DeepakDev大神的英文原创作品 Node.js urlObject.pathname API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。