當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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


node.js URL模塊中的url.toJSON()方法用於返回URL對象的序列化URL。此方法的返回值等效於URL.href和url.toString()方法。如果使用JSON.stringify()方法序列化了URL對象,則會自動調用它。

用法:

url.toJSON()

參數:此方法不接受任何參數。


返回值:此方法返回URL對象的序列化URL。

以下示例說明了Node.js中的url.toJSON()方法:

範例1:

// node program to demonstrate the 
// url.toJSON() method in node.js 
  
// Require an URL module 
const url = require('url'); 
  
// Creating and initializing myURL variable 
var 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 program to demonstrate the 
// url.toJSON() method in node.js 
  
// Require an URL module 
const url = require('url'); 
  
// Creating and initializing myURL variable 
var myurl = [ 
    new URL('https://www.geeksforgeeks.org'), 
    new URL('https://www.contribute.geeksforgeeks.org'), 
    new URL('https://www.practice.geeksforgeeks.org'), 
    new URL('https://www.demo.geeksforgeeks.org'), 
    new URL('https://www.write.geeksforgeeks.org'), 
]; 
  
// Display result 
console.log(JSON.stringify(myurl));

輸出:

[
    "https://www.geeksforgeeks.org/",
    "https://www.contribute.geeksforgeeks.org/",
    "https://www.practice.geeksforgeeks.org/",
    "https://www.demo.geeksforgeeks.org/",
    "https://www.write.geeksforgeeks.org/"
]

注意:上麵的程序將通過使用node index.js命令。

參考: https://nodejs.org/api/url.html#url_url_tojson



相關用法


注:本文由純淨天空篩選整理自TARuN大神的英文原創作品 Node | URL.toJSON() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。