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])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。