node.js URL 模块中的 url.toJSON() 方法用于返回 URL 对象的序列化 URL。该方法的返回值相当于URL.href和url.toString()方法。如果使用 JSON.stringify() 方法序列化 URL 对象,则会自动调用它。
用法:
url.toJSON()
参数:该方法不接受任何参数。
返回值:此方法返回 URL 对象的序列化 URL。
示例 1:以下示例说明了 Node.js 中的 url.toJSON() 方法:
javascript
// node program to demonstrate the
// url.toJSON() method in node.js
// Require an URL module
const url = require('url');
// Creating and initializing myURL variable
let urls = [
new URL('https://www.geeksforgeeks.com'),
new URL('https://www.google.com'),
new URL('https://www.mygeeks.com')
];
// Display result
console.log(JSON.stringify(urls));
输出:
[ "https://www.geeksforgeeks.org/", "https://www.google.com/", "https://www.mygeeks.com/" ]
示例 2:以下示例说明了 Node.js 中的 url.toJSON() 方法:
javascript
// node program to demonstrate the
// url.toJSON() method in node.js
// Require an URL module
const url = require('url');
// Creating and initializing myURL variable
let myurl = [
new URL('https://www.geeksforgeeks.org'),
new URL('https://write.geeksforgeeks.org'),
new URL('https://www.practice.geeksforgeeks.org'),
new URL('https://www.demo.geeksforgeeks.org'),
new URL('https://write.geeksforgeeks.org'),
];
// Display result
console.log(JSON.stringify(myurl));
输出:
[ "https://www.geeksforgeeks.org/", "https://write.geeksforgeeks.org/", "https://www.practice.geeksforgeeks.org/", "https://www.demo.geeksforgeeks.org/", "https://write.geeksforgeeks.org/" ]
注意:上述程序将使用nodeindex.js命令编译并运行。
参考: https://nodejs.org/api/url.html#url_url_tojson
相关用法
- Node.js URL.toJSON()用法及代码示例
- Node.js URL.pathToFileURL用法及代码示例
- Node.js URL.fileURLToPath用法及代码示例
- Node.js URL.protocol用法及代码示例
- 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.password用法及代码示例
- Node.js URL.pathname用法及代码示例
- Node.js URL.port用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Node.js URL.toJSON() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。