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
相關用法
- Node.js urlObject.port用法及代碼示例
- Node.js urlObject.pathname用法及代碼示例
- Node.js urlObject.protocol用法及代碼示例
- Node.js urlObject.path用法及代碼示例
- Node.js urlObject.auth()用法及代碼示例
- Node.js urlObject.slashes用法及代碼示例
- Node.js urlObject.href用法及代碼示例
- Node.js urlObject.query用法及代碼示例
- Node.js urlObject.hostname用法及代碼示例
- Node.js urlObject.hash用法及代碼示例
- Node.js urlObject.host用法及代碼示例
- Node.js urlObject.search用法及代碼示例
- Node.js urlObject.auth用法及代碼示例
- Node.js url.parse(urlString, parseQueryString, slashesDenoteHost)用法及代碼示例
- Node.js urlSearchParams.values()用法及代碼示例
- Node.js url.toString()用法及代碼示例
- Node.js urlSearchParams.toString()用法及代碼示例
- Node.js url.domainToUnicode()用法及代碼示例
- Node.js url.domainToASCII(domain)用法及代碼示例
- Node.js url.domainToUnicode(domain)用法及代碼示例
- Node.js url.fileURLToPath(url)用法及代碼示例
- Node.js url.format(URL[, options])用法及代碼示例
- Node.js url.pathToFileURL(path)用法及代碼示例
- Node.js url.urlToHttpOptions(url)用法及代碼示例
- Node.js url.format(urlObject)用法及代碼示例
注:本文由純淨天空篩選整理自bhanu5686大神的英文原創作品 Node.js urlObject.port API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。