url.format(URL[, options])
添加於:v7.6.0
參數
URL
<URL> A WHATWG URL 對象options
<Object>- 返回: <string>
返回 WHATWG URL 對象的 URL String
表示的可自定義序列化。
URL 對象同時具有 toString()
方法和 href
屬性,它們返回 URL 的字符串序列化。但是,這些都不能以任何方式定製。 url.format(URL[, options])
方法允許對輸出進行基本定製。
import url from 'node:url'; const myURL = new URL('https://a:[email protected]測試?abc#foo'); console.log(myURL.href); // Prints https://a:[email protected]/?abc#foo console.log(myURL.toString()); // Prints https://a:[email protected]/?abc#foo console.log(url.format(myURL, { fragment: false, unicode: true, auth: false })); // Prints 'https://測試/?abc'
const url = require('node:url'); const myURL = new URL('https://a:[email protected]測試?abc#foo'); console.log(myURL.href); // Prints https://a:[email protected]/?abc#foo console.log(myURL.toString()); // Prints https://a:[email protected]/?abc#foo console.log(url.format(myURL, { fragment: false, unicode: true, auth: false })); // Prints 'https://測試/?abc'
相關用法
- Node.js url.format(urlObject)用法及代碼示例
- Node.js url.fileURLToPath(url)用法及代碼示例
- Node.js url.domainToUnicode(domain)用法及代碼示例
- Node.js url.domainToASCII(domain)用法及代碼示例
- Node.js url.urlToHttpOptions(url)用法及代碼示例
- Node.js url.resolve(from, to)用法及代碼示例
- Node.js url.parse(urlString, parseQueryString, slashesDenoteHost)用法及代碼示例
- Node.js url.domainToUnicode()用法及代碼示例
- Node.js url.pathToFileURL(path)用法及代碼示例
- Node.js url.toString()用法及代碼示例
- Node.js urlObject.search用法及代碼示例
- Node.js URLSearchParams urlSearchParams[Symbol.iterator]()用法及代碼示例
- Node.js urlObject.auth用法及代碼示例
- Node.js urlObject.path用法及代碼示例
- Node.js urlObject.port用法及代碼示例
- Node.js urlSearchParams.values()用法及代碼示例
- Node.js urlObject.href用法及代碼示例
- Node.js urlObject.host用法及代碼示例
- Node.js urlObject.auth()用法及代碼示例
- Node.js urlObject.hash用法及代碼示例
- Node.js urlSearchParams.toString()用法及代碼示例
- Node.js urlObject.query用法及代碼示例
- Node.js urlObject.pathname用法及代碼示例
- Node.js urlObject.slashes用法及代碼示例
- Node.js urlObject.protocol用法及代碼示例
注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 url.format(URL[, options])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。