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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。