当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js URL.toJSON()用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自tarun007大神的英文原创作品 Node.js URL.toJSON() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。