- 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 模块
Node.js - assert.fail() 函数
Node.js assert.fail() 函数将抛出一个 AssertionError 以及我们作为参数传递的错误消息或默认错误消息。如果我们传递的消息是 Error 的实例,那么它将被抛出,而不是 AssertionError。
assert 模块提供了一组用于验证不变量的 assert 函数。Node.js assert.fail() 函数是 Node.js 的 assert 模块的内置函数。
语法
以下是 assert.fail() 函数Node.js的语法 -
assert.fail([message]);
参数
- message − (可选) 字符串或错误类型可以作为输入传递给此参数。默认情况下,它将打印“失败”。
返回值
此方法将返回一个 AssertionError 以及在参数中传递到输出的消息。
例在下面的示例中,我们将文本传递给 Node.js assert.fail() 函数的消息参数。
const assert = require('assert');
const err = 'Warning';
assert.fail(err);
输出
当我们编译并运行代码时,该函数会将 AssertionError 和消息抛出到输出中。
assert.js:79
throw new AssertionError(obj);
^
AssertionError [ERR_ASSERTION]: Warning
at Object.<anonymous> (/home/cg/root/639c30a0a5fb2/main.js:4:8)
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)
at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)
throw new AssertionError(obj);
^
AssertionError [ERR_ASSERTION]: Warning
at Object.<anonymous> (/home/cg/root/639c30a0a5fb2/main.js:4:8)
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)
at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)
例
在下面的示例中,我们将 Error 的实例传递给 assert.fail() 函数的消息参数Node.js。
const assert = require('assert');
const err = new TypeError('Alert, this is a warning...')
assert.fail(err);
输出
当我们编译并运行代码时,该函数不会抛出 AssertionError;将抛出错误。
assert.js:77
if (obj.message instanceof Error) throw obj.message;
^
TypeError: Alert, this is a warning...
at Object.<anonymous> (/home/cg/root/639c30a0a5fb2/main.js:3:13)
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)
at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)
if (obj.message instanceof Error) throw obj.message;
^
TypeError: Alert, this is a warning...
at Object.<anonymous> (/home/cg/root/639c30a0a5fb2/main.js:3:13)
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)
at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)
例
在下面的示例中,我们没有将任何文本传递给函数的消息参数。因此,它会将默认消息分配为“失败”。
const assert = require('assert');
assert.fail();
输出
在执行上述程序时,它将生成以下输出 -
assert.js:79
throw new AssertionError(obj);
^
AssertionError [ERR_ASSERTION]: Failed
at Object.<anonymous> (/home/cg/root/639c30a0a5fb2/main.js:3:8)
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)
at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)
throw new AssertionError(obj);
^
AssertionError [ERR_ASSERTION]: Failed
at Object.<anonymous> (/home/cg/root/639c30a0a5fb2/main.js:3:8)
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)
at bootstrapNodeJSCore (internal/bootstrap/node.js:572:3)