url.password是类的内置应用程序编程接口URL之内网址模块用于获取和设置 URL 的密码部分。
用法:
const url.password
返回值:它获取并设置 URL 的密码部分。
以下示例程序旨在说明使用url.password方法:
示例1:
javascript
// node program to demonstrate the
// url.password API as Setter
//importing the module 'url'
const http = require('url');
// creating and initializing myURL
const myURL = new URL('https://pqr:abc@example.com');
// Display password
// value of myURL before change
console.log("Before Change");
console.log(myURL.password);
// assigning password portion
// using password API
console.log();
// Changing the myUrl.password for the above URL
myURL.password = '123';
// Display the changed password
// value of myURL after change
console.log("After Change");
console.log(myURL.href);
输出:
示例 2:
javascript
// node program to demonstrate the
// url.password API as Getter
//importing the module 'url'
const http = require('url');
// creating and initializing myURL
const myURL = new URL('https://example.org/foo#ram');
myURL.password = '1234'
// getting the password portion
// using password
const password = myURL.password;
// Display hostname value
console.log("password is : "+password);
console.log(myURL.href);
输出:
注意上述程序将使用以下命令编译并运行myapp.js命令在节点中。
参考:
https://nodejs.org/api/url.html#url_url_password
相关用法
- Node.js URL.password用法及代码示例
- Node.js URL.pathToFileURL用法及代码示例
- Node.js URL.pathname用法及代码示例
- Node.js URL.protocol用法及代码示例
- Node.js URL.port用法及代码示例
- Node.js URL.toJSON()用法及代码示例
- Node.js URL.fileURLToPath用法及代码示例
- Node.js URL.resolve(from,to)用法及代码示例
- Node.js URL.format(urlObject)用法及代码示例
- Node.js URL.format用法及代码示例
- Node.js URL.hash用法及代码示例
- Node.js URL.host用法及代码示例
- Node.js URL.hostname用法及代码示例
- Node.js URL.href用法及代码示例
- Node.js URL.origin用法及代码示例
- Node.js URL.search用法及代码示例
- Node.js URL.username用法及代码示例
- Node.js URL.searchParams用法及代码示例
- Node.js URL.createObjectURL(blob)用法及代码示例
- Node.js URLSearchParams.sort()用法及代码示例
- Node.js URLSearchParams.set()用法及代码示例
- Node.js URLSearchParams.toString()用法及代码示例
- Node.js URLSearchParams.keys()用法及代码示例
- Node.js URLSearchParams.getAll()用法及代码示例
- Node.js URLSearchParams.forEach()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js URL.password API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。