- 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 - url.hostname 属性
URL 模块的 URL 类的 NodeJS url.hostname 属性允许我们获取和设置指定 URL 的主机名部分。
NodeJS url.hostname 属性看起来类似于 NodeJS host 属性,但 hostname 和 host 之间的主要区别在于主机名不包含端口段。如果为主机名分配了任何无效的主机名值,则将忽略主机名属性。
语法
以下是 URL 类的 NodeJS hostname 属性的语法
URL.hostname
参数
此属性不接受任何参数。
返回值
此属性允许获取和设置指定 URL 的主机名部分。
以下示例演示了路径模块的 Node.js URL.hostname 属性的用法。
例使用 NodeJS URL.hostname 属性,我们可以获取所提供 URL 的主机名部分。
在以下示例中,我们尝试获取给定 URL 的主机名部分。
const url = require('url');
const myURL = new URL('https://www.qikepu.com:100/index.htm');
console.log("The URL: " + myURL.href);
console.log("Hostname of the URL: " + myURL.hostname);
输出
正如我们在下面的输出中看到的,URL.hostname 属性打印给定 URL 的主机名部分。
The URL: https://www.qikepu.com:100/index.htm
Hostname of the URL: www.qikepu.com
Hostname of the URL: www.qikepu.com
例
我们不能使用 URL.hostname 属性更改 URL 中主机名部分的主机名和端口段的值。
在下面的示例中,我们尝试使用 URL.hostname 属性修改给定 URL 中主机名部分的主机名和端口段。
const url = require('url');
const myURL = new URL('https://www.qikepu.com:100/index.htm');
console.log("Before changing the port: " + myURL.href);
myURL.hostname = "www.ttttttttqikepu.com:101"
console.log("After changing hostname and the port: " + myURL.href);
输出
正如我们在下面的输出中看到的,URL.hostname 属性没有对给定 URL 的主机名部分进行任何更改。
Before changing the port: https://www.qikepu.com:100/index.htm
After changing hostname and the port: https://www.qikepu.com:100/index.htm
After changing hostname and the port: https://www.qikepu.com:100/index.htm
例
我们可以使用 URL.host 属性设置主机名和主机名部分的端口段。
在以下示例中,我们尝试使用 URL.host 属性更改给定 URL 中主机名部分的主机名和端口段。
const url = require('url');
const myURL = new URL('https://www.qikepu.com:100/index.htm');
console.log("Before changing the hostname and port: " + myURL.href);
myURL.host = "www.qikepusssspoint.com:101"
console.log("After changing the hostname and port: " + myURL.href);
输出
如果我们编译并运行上述程序,则 URL.host 属性将对给定的 URL 进行指定的修改。
Before changing the hostname and port: https://www.qikepu.com:100/index.htm
After changing the hostname and port: https://www.qikepusssspoint.com:101/index.htm
After changing the hostname and port: https://www.qikepusssspoint.com:101/index.htm