- 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 - 流
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 入门
- Node.js - MySQL 创建数据库
- Node.js - MySQL 创建表
- Node.js - MySQL 插入数据
- Node.js - MySQL 查询数据
- Node.js - MySQL 条件查询
- Node.js - MySQL 排序
- Node.js - MySQL 删除数据
- Node.js - MySQL 更新数据
- Node.js - MySQL 连接查询
- Node.js MongoDB
- Node.js - MongoDB 入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB 插入数据
- Node.js - MongoDB 查找数据
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB 删除数据
- Node.js - MongoDB 更新数据
- Node.js - MongoDB 数据限制
- Node.js - MongoDB 连接查询
- Node.js 模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - 实用程序模块
- Node.js - Web 模块
- Node.js 有用资源
- Node.js - 快速指南
- Node.js - 有用资源
- Node.js - 讨论
Node.js - path.extname() 方法
Node.js 的 path.extname() 方法属于 path 模块,它根据路径中最后一个句点 (.) 字符的出现位置返回文件的扩展名部分。如果路径的最后一部分没有 (.),或者除了路径 basename 的第一个字符之外没有其他 (.) 字符,则返回空 字符串。
语法
以下是 path 模块中 Node.js path.extname() 方法的语法:
path.extname( path )
参数
path − 此参数包含用于提取该特定文件扩展名部分的文件路径。此方法需要此参数,并且必须将其指定为有效的 字符串值。如果 path 不是字符串,则会抛出 TypeError。
返回值
此方法返回一个 字符串,该字符串指定指定文件路径的扩展名部分。
示例
此方法将根据最后一个句点 (.) 字符的出现位置获取 path 的扩展名部分,忽略路径中的第一部分。
以下是 Node.js path.extname() 方法的不同变体。
const path = require('path'); var path1 = path.extname('main.js'); console.log(path1); var path2 = path.extname('main.test.js'); console.log(path2); var path2 = path.extname('main.'); console.log(path2); var path2 = path.extname('.main'); console.log(path2); var path2 = path.extname('main'); console.log(path2); var path2 = path.extname('main..js'); console.log(path2); var path2 = path.extname('main.js.'); console.log(path2);
输出
执行上述程序后,将生成以下输出:
.js .js . .js .
示例
如果我们将非 字符串类型的值传递给 path 参数,则 path.dirname() 方法将抛出 TypeError。
在以下示例中,我们将 整数而不是 字符串传递给方法的 path 参数。
const path = require('path'); var path1 = path.extname(86598798); console.log(path1);
TypeError
如果我们编译并运行上述程序,该方法将抛出 TypeError,因为 path 参数不是 字符串值。
path.js:39 throw new ERR_INVALID_ARG_TYPE('path', 'string', path); ^ TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received type number at assertPath (path.js:39:11) at Object.extname (path.js:1375:5) at Object.<anonymous> (/home/cg/root/63a028ab0650d/main.js:3:18) at Module._compile (internal/modules/cjs/loader.js:702:30) at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10) at Module.load (internal/modules/cjs/loader.js:612:32) at tryModuleLoad (internal/modules/cjs/loader.js:551:12) at Function.Module._load (internal/modules/cjs/loader.js:543:3) at Function.Module.runMain (internal/modules/cjs/loader.js:744:10) at startup (internal/bootstrap/node.js:238:19)
nodejs_path_module.htm
广告