Node中的urlObject.port()方法用于获取主机名内主机组件的数字端口部分。 URL的端口号返回,否则,如果URL中没有端口号,则返回None。
用法: urlObject.port() 返回:Returns the URL’s port number or None
范例1:在这些示例中,我们展示了urlObject.port()方法如何能够从主机名中提取URL的端口号。
// Importing the module 'url'
const url = require('url');
var adr =
'http://localhost:8080/default.htm?year=2019&month=may';
// Parse the address:
var q = url.parse(adr, true);
/* The parse method returns an object containing
URL properties */
console.log(q.port);
输出:
8080
范例2:
// Importing the module 'url'
const url = require('url');
var adr =
'http://localhost/default.htm?year=2019&month=may';
// Parse the address:
var q = url.parse(adr, true);
/* The parse method returns an object containing
URL properties */
console.log(q.port);
输出:
null
相关用法
- Node.js URL.pathToFileURL用法及代码示例
- Node.js URL.fileURLToPath用法及代码示例
- Node.js URLSearchParams.has()用法及代码示例
- Node.js URL.href用法及代码示例
- Node.js URL.password用法及代码示例
注:本文由纯净天空筛选整理自bhanu5686大神的英文原创作品 Node | urlObject.port API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。