在本文中,我们将学习 urlObject.path API。 urlObject.path API 属性是路径名和搜索组件的串联。路径名是指 URL 中的文件路径,搜索组件是指具有固定限制的查询和哈希字符串,例如问号 (?) 或哈希 (#) 字符。不执行路径解码。
示例:让我们考虑一个 URL 'http://user:pass@sub.example.com:8080/p/a/t/h?query=string#hash'
用法: urlObject.path 返回:'/p/a/t/h?query=string'
urlObject.path 由 url.parse() 函数返回后返回‘/p/a/t/h?query=string’。
示例 1:Index.js
Javascript
//Importing url module
const http = require('url');
// Creating a demo URL
const myURL =
'http://user:pass@sub.example.com:8080/p/a/t/h?query=string#hash';
// Parsing the Address
var q = http.parse(myURL, true);
// Displaying the path
console.log(q.path);
执行命令:
node index.js
控制台输出:
/p/a/t/h?query=string
示例2:(更改路径)
Javascript
//Importing the url module
const http = require('url');
// Creating a demo URL
const myURL =
'http://user:pass@sub.example.com:8080/p/a/t/h?query=string#hash';
var q = http.parse(myURL, true);
// Display path value of myURL before change
console.log("Before Change");
console.log(q.path);
console.log();
// Changing the path
q.path='/s/k/t/j?query=abc@gmail.com'
// Printing the changed path
console.log("After Change");
console.log(q.path);
执行命令:
node index.js
控制台输出:
Before Change /p/a/t/h?query=string After Change /s/k/t/j?query=abc@gmail.com
相关用法
- Node.js GM solarize()用法及代码示例
- Node.js MySQL Max()用法及代码示例
- Node.js process.nextTick()用法及代码示例
- CSS transition-property用法及代码示例
- HTML DOM lang用法及代码示例
- HTML Style backgroundClip用法及代码示例
- HTML Style borderTop用法及代码示例
- HTML Meter max用法及代码示例
- CSS table-layout用法及代码示例
- CSS text-align用法及代码示例
- CSS border-top-width用法及代码示例
- HTML Textarea autofocus用法及代码示例
- HTML Style columnGap用法及代码示例
- HTML Input Time autofocus用法及代码示例
- Fabric.js Textbox opacity属性用法及代码示例
注:本文由纯净天空筛选整理自dassohom5大神的英文原创作品 Node.js urlObject.path Property。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。