- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
NodeJS - urlObject.port 属性
URL 字符串是包含多个段的结构化字符串。如果我们解析此 URL 字符串,则返回一个 URL 对象。返回的 URL 对象包含 URL 字符串中存在的段。
urlObject 的 NodeJS urlObject.port 属性指定 URL 中主机段的数字端口部分。
例如,考虑 URL“https://user:pass@site.com:8000/pa/th#hashh”。
- “site.com:8000”是主机段。
- “8000”是端口部分。
语法
以下是 NodeJS urlObject.port 属性的语法
urlObject.port
参数
此属性不接受任何参数。
返回值
此属性从 URL 中检索主机段的数字端口部分。
例如果提供的 URL 包含主机段中的端口部分,则 NodeJS urlObject.port 属性将仅检索端口部分。
在以下示例中,我们尝试从提供的 URL 中获取端口部分。
const url = require('url');
let address = 'https://user:pass@site.com:8000/pa/th#hashh';
let result = url.parse(address, true);
console.log(result.port);
输出
正如我们在下面的输出中看到的,NodeJs port 属性从 URL 中检索了端口部分。
8000
例
如果提供的 URL 在主机段中不包含端口部分,则 port 属性将返回 null。
在以下示例中,我们将证明一个没有端口参数的 URL。
const url = require('url');
let address = 'https://user:pass@site.com/pa/th#hashh';
let result = url.parse(address, true);
console.log(result.port);
输出
以下是上述代码的输出
null
例
如果我们不解析指定的 URL,则 port 属性将未定义。
我们试图在不解析的情况下使用 port 属性从 URL 获取主机段中的端口部分。
const url = require('url');
let address = 'https://user:pass@site.com/pa/th#hashh';
console.log(address.port);
输出
正如我们在下面的输出中看到的,port 属性是未定义的。
undefined