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)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。