URL.username是Node.JS中URL类的内置应用程序编程接口(API)。 URL.username API用于获取和设置URL的用户名。
Syntax:url.username url:It is an object created by URL constructor.
示例1 :(获取URL的用户名)
//Creating an URL_1 object with URL constructor.
const URL_1 = new URL("https://ashish:ashish123@www.geeksforgeeks.org");
//Getting username of above created URL_1 object
console.log(URL_1.username);
输出:
ashish
示例2 :(设置URL的用户名)
//Creating an URL_1 object with URL constructor.
const URL_1 = new URL("https://ashish:ashish123@www.geeksforgeeks.org/geeks");
//Getting username of above created URL_1 object
console.log("Before changing username URL is:")
console.log(URL_1.href);
console.log("username:"+ URL_1.username);
//Setting URL_1 username to ashu
URL_1.username = "ashu";
//Getting username after setting it to ashu
console.log("After changing username URL is:")
console.log(URL_1.href);
console.log("username:"+ URL_1.username);
输出:
Before changing username URL is: https://ashish:ashish123@www.geeksforgeeks.org/geeks username:ashish After changing username URL is: https://ashu:ashish123@www.geeksforgeeks.org/geeks username:ashu
相关用法
- Node.js URLSearchParams.set()用法及代码示例
- Node.js URL.protocol用法及代码示例
- Node.js URL.hostname用法及代码示例
- Node.js URL.href用法及代码示例
- Node.js URL.hash用法及代码示例
- Node.js URL.host用法及代码示例
- Node.js URL.password用法及代码示例
注:本文由纯净天空筛选整理自AshishkrGoyal大神的英文原创作品 Node | URL.username API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。