console.assert()方法是控制台模块的内置应用程序编程接口,用于声明作为参数传递给它的值,即,它检查该值是否为真,并打印错误消息(如果提供)且声明失败价值。
用法:
console.assert(value, messages)
参数:此方法具有上述和以下所述的两个参数:
- value:此参数指定要声明的值。
- messages:它指定要用作错误消息的消息。与值一起传递的任何参数都将被视为消息。
返回值:如果值为true,则此方法不会返回任何内容。如果未能断言该值,则将记录断言失败,如果在util.format()中的值之后的所有后续参数中均提供该错误消息,则会记录一条错误消息。输出用作错误消息。
以下示例说明了Node.js中console.assert()方法的用法:
范例1:
// Node.js program to demonstrate the
// console.assert() Method
// Accessing console module
const console = require('console');
// Calling console.assert() method
console.assert(true, "error message 1");
console.assert(false, "error message 2");
输出:
Assertion failed:error message 2
范例2:
// Node.js program to demonstrate the
// console.assert() Method
// Accessing console module
const console = require('console');
// Calling console.assert()
var a = 10, b = 5;
console.assert(1 == 1, "error at 1==1");
console.assert(1 != 1, "error at 1==1");
console.assert(3 & 9, "error at 3&9");
console.assert(1 & 6, "error at 1&6");
console.assert(0 && 9, "error at 0&&9");
console.assert(1 && 8, "error at 1&&9");
console.assert(a % b == 1, "error at a%b==1");
console.assert(a > b, "error at a>b");
console.assert(b > a, "error at b>a");
输出:
Assertion failed:error at 1==1 Assertion failed:error at 1&6 Assertion failed:error at 0&&9 Assertion failed:error at a%b==1 Assertion failed:error at b>a
注意:上面的程序将通过使用以下命令进行编译和运行node filename.js
命令。
参考: https://nodejs.org/api/console.html#console_console_assert_value_message
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM operator()用法及代码示例
- Node.js GM sharpen()用法及代码示例
- Node.js GM spread()用法及代码示例
- Node.js GM solarize()用法及代码示例
- Node.js GM shave()用法及代码示例
- Node.js GM emboss()用法及代码示例
- Node.js GM despeckle()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
- Node.js GM write()用法及代码示例
- Node.js GM drawLine()用法及代码示例
注:本文由纯净天空筛选整理自gekcho大神的英文原创作品 Node.js console.assert() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。