url.fileURLToPath(url)
添加于:v10.12.0
参数
此函数确保正确解码百分比编码的字符以及确保cross-platform 有效的绝对路径字符串。
import { fileURLToPath } from 'node:url'; const __filename = fileURLToPath(import.meta.url); new URL('file:///C:/path/').pathname; // Incorrect: /C:/path/ fileURLToPath('file:///C:/path/'); // Correct: C:\path\ (Windows) new URL('file://nas/foo.txt').pathname; // Incorrect: /foo.txt fileURLToPath('file://nas/foo.txt'); // Correct: \\nas\foo.txt (Windows) new URL('file:///你好.txt').pathname; // Incorrect: /%E4%BD%A0%E5%A5%BD.txt fileURLToPath('file:///你好.txt'); // Correct: /你好.txt (POSIX) new URL('file:///hello world').pathname; // Incorrect: /hello%20world fileURLToPath('file:///hello world'); // Correct: /hello world (POSIX)
const { fileURLToPath } = require('node:url'); new URL('file:///C:/path/').pathname; // Incorrect: /C:/path/ fileURLToPath('file:///C:/path/'); // Correct: C:\path\ (Windows) new URL('file://nas/foo.txt').pathname; // Incorrect: /foo.txt fileURLToPath('file://nas/foo.txt'); // Correct: \\nas\foo.txt (Windows) new URL('file:///你好.txt').pathname; // Incorrect: /%E4%BD%A0%E5%A5%BD.txt fileURLToPath('file:///你好.txt'); // Correct: /你好.txt (POSIX) new URL('file:///hello world').pathname; // Incorrect: /hello%20world fileURLToPath('file:///hello world'); // Correct: /hello world (POSIX)
相关用法
- Node.js url.format(URL[, options])用法及代码示例
- Node.js url.format(urlObject)用法及代码示例
- 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.fileURLToPath(url)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。