- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
NodeJS - fileURLToPath(url) 方法
类 URL 的 NodeJS url.fileURLToPath() 方法接受文件 URL 字符串或 URL 对象,并将它们转换为正确编码的路径。此方法将确保对百分比编码的字符进行绝对解码。Node.js 的 URL 模块提供了用于 URL 解析和解析的各种实用程序。
语法
以下是类 URL 的 NodeJS url.fileURLToPath() 方法的语法
url.fileURLToPath(url)
参数
- url:此参数指定将转换为路径的文件 URL 字符串或 URL 对象。
返回值
此方法返回完全解析的特定于平台的 Node.js 文件路径。
例如果将文件 URL 字符串传递给 NodeJS url.fileURLToPath() 方法,它将转换为完全解析的特定于平台的路径。
在以下示例中,我们将文件 URL 字符串传递给 NodeJS url.fileURLToPath() 方法。
const { fileURLToPath } = require('node:url');
let FtoP = fileURLToPath('file:///C:/Desktop/file/');
console.log(FtoP);
输出
在执行上述程序时,它将生成以下输出
C:\Desktop\file\
例
在 Windows 上,如果文件 URL 字符串包含非 ASCII 字符,则 fileURLToPath() 方法无法转换为完全解析的路径,并返回 TypeError。
在以下示例中,我们将包含日语字符的文件 URL 字符串传递给 fileURLToPath() 方法。
const { fileURLToPath } = require('node:url');
let FtoP = fileURLToPath('file:///こんにちは:/');
console.log(FtoP);
类型错误
在执行上述程序时,它将生成以下输出
node:internal/url:1407
throw new ERR_INVALID_FILE_URL_PATH('must be absolute');
^
TypeError [ERR_INVALID_FILE_URL_PATH]: File URL path must be absolute
at new NodeError (node:internal/errors:387:5)
at getPathFromURLWin32 (node:internal/url:1407:11)
at fileURLToPath (node:internal/url:1437:22)
at Object.<anonymous> (C:\Users\Lenovo\Desktop\JavaScript\nodefile.js:3:12)
at Module._compile (node:internal/modules/cjs/loader:1126:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1180:10)
at Module.load (node:internal/modules/cjs/loader:1004:32)
at Function.Module._load (node:internal/modules/cjs/loader:839:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
at node:internal/main/run_main_module:17:47 {
code: 'ERR_INVALID_FILE_URL_PATH'
}
throw new ERR_INVALID_FILE_URL_PATH('must be absolute');
^
TypeError [ERR_INVALID_FILE_URL_PATH]: File URL path must be absolute
at new NodeError (node:internal/errors:387:5)
at getPathFromURLWin32 (node:internal/url:1407:11)
at fileURLToPath (node:internal/url:1437:22)
at Object.<anonymous> (C:\Users\Lenovo\Desktop\JavaScript\nodefile.js:3:12)
at Module._compile (node:internal/modules/cjs/loader:1126:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1180:10)
at Module.load (node:internal/modules/cjs/loader:1004:32)
at Function.Module._load (node:internal/modules/cjs/loader:839:12)
at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:81:12)
at node:internal/main/run_main_module:17:47 {
code: 'ERR_INVALID_FILE_URL_PATH'
}