Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Node.js 断言 模块

❮ 内置模块


示例

如果表达式计算结果为 0 或 false,则会抛出错误并终止程序

var assert = require('assert');
assert(5 > 7);
运行示例 »

定义和用法

assert 模块提供了一种测试表达式的方法。如果表达式的计算结果为 0 或 false,则表示断言失败,并且程序将终止。

此模块是为 Node.js 内部使用而构建的。


语法

在应用程序中包含 assert 模块的语法

var assert = require('assert');

断言方法

方法 描述
assert() 检查值是否为真。与 assert.ok() 相同
deepEqual() 检查两个值是否相等
deepStrictEqual() 检查两个值是否相等,使用严格相等运算符 (===)
doesNotThrow()  
equal() 检查两个值是否相等,使用相等运算符 (==)
fail() 抛出一个断言错误
ifError() 如果指定的错误计算结果为真,则抛出一个指定的错误
notDeepEqual() 检查两个值是否不相等
notDeepStrictEqual() 检查两个值是否不相等,使用严格不相等运算符 (!==)
notEqual() 检查两个值是否不相等,使用不相等运算符 (!=)
notStrictEqual() 检查两个值是否不相等,使用严格不相等运算符 (!==)
ok() 检查值是否为真
strictEqual() 检查两个值是否相等,使用严格相等运算符 (===)
throws()  

❮ 内置模块

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.