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


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


Node 中的 urlObject.port() 方法用于获取主机名中主机组件的数字端口部分。如果 URL 中不存在端口号,则返回 URL 的端口号,否则返回 None。

用法:

urlObject.port()

返回:返回 URL 端口号或 None

示例 1:在这些示例中,我们展示了 urlObject.port() 方法如何从主机名中提取 URL 的端口号。

javascript


// Importing the module 'url' 
const url = require('url');
let adr =
'http://localhost:8080/default.htm?year=2019 & month=may';
// Parse the address: 
let q = url.parse(adr, true);
/* The parse method returns an object containing 
URL properties */
console.log(q.port);

输出:

8080

示例 2:

javascript


// Importing the module 'url' 
const url = require('url');
let adr =
'http://localhost/default.htm?year=2019 & month=may';
// Parse the address: 
let q = url.parse(adr, true);
/* The parse method returns an object containing 
URL properties */
console.log(q.port);

输出:

null

相关用法


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