- 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.auth 属性
URL 字符串是包含多个段的结构化字符串。如果我们解析此 URL 字符串,则返回一个 URL 对象。返回的 URL 对象包含 URL 字符串中存在的段。
urlObject 的 NodeJS urlObject.auth 属性指定 URL 的身份验证段。它也被称为用户信息。URL 中身份验证段的格式为 {username}[:{password}]。
没有指定规则规定身份验证段的格式应采用相同的方式,[:{password}] 部分是可选的。
语法
以下是 NodeJS urlObject.auth 属性的语法
urlObject.auth
参数
此属性不接受任何参数。
返回值
此属性检索 URL 的用户名和密码段。
例如果提供的 URL 包含身份验证段,即 {username}[:{password}]格式,则 auth 属性将检索该段。
在以下示例中,我们尝试从提供的 URL 中获取身份验证段。
注意:要使用 auth 属性从 URL 获取 auth 段,我们首先需要使用 NodeJS url.parse() 方法解析 URL;否则,身份验证段未定义。
const url = require('url');
let address = 'https://username=Nikhil:password=TutPoint@www.qikepu.com#foo';
let result = url.parse(address, true);
console.log(result.auth);
输出
正如我们在下面的输出中看到的,NodeJS auth 属性从 URL 中检索了 auth 段。
username=Nikhil:password=TutPoint
例
如果我们不解析指定的 URL,则 auth 属性将未定义。
我们试图在不解析的情况下从提供的 URL 中获取身份验证段。
const url = require('url');
let address = 'https://username=Nikhil:password=TutPoint@www.qikepu.com#foo';
console.log(address.auth);
输出
正如我们在下面的输出中看到的,auth 属性是未定义的。
undefined
例
auth 段中的 [:{password}] 部分是可选的。
在以下示例中,提供的 URL 仅包含用户名。
const url = require('url');
let address = 'https://username=Nikhil@www.qikepu.com#foo';
let result = url.parse(address, true);
console.log(result.auth);
输出
以下是上述代码的输出
username=Nikhil
例
如果提供的 URL 不包含 auth 段,则 auth 属性将检索 null。
const url = require('url');
let address = 'https:www.qikepu.com';
let result = url.parse(address, true);
console.log(result.auth);
输出
正如我们在下面的输出中看到的,auth 属性为 null,因为 URL 中不涉及 auth 段。
null