當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Node.js assert.ok(value[, message])用法及代碼示例


assert.ok(value[, message])

曆史
版本變化
v10.0.0

assert.ok()(無參數)現在將使用預定義的錯誤消息。

v0.1.21

添加於:v0.1.21


參數

測試value 是否真實。它相當於 assert.equal(!!value, true, message)

如果 value 不真實,則會拋出一個 AssertionError ,其 message 屬性設置等於 message 參數的值。如果 message 參數是 undefined ,則分配默認錯誤消息。如果 message 參數是 Error 的實例,那麽它將被拋出而不是 AssertionError 。如果根本沒有傳入任何參數 message 將設置為字符串:'No value argument passed to `assert.ok()`'

請注意,在 repl 中的錯誤消息將與文件中拋出的錯誤消息不同!有關詳細信息,請參見下文。

import assert from 'node:assert/strict';

assert.ok(true);
// OK
assert.ok(1);
// OK

assert.ok();
// AssertionError: No value argument passed to `assert.ok()`

assert.ok(false, 'it\'s false');
// AssertionError: it's false

// In the repl:
assert.ok(typeof 123 === 'string');
// AssertionError: false == true

// In a file (e.g. test.js):
assert.ok(typeof 123 === 'string');
// AssertionError: The expression evaluated to a falsy value:
//
//   assert.ok(typeof 123 === 'string')

assert.ok(false);
// AssertionError: The expression evaluated to a falsy value:
//
//   assert.ok(false)

assert.ok(0);
// AssertionError: The expression evaluated to a falsy value:
//
//   assert.ok(0)const assert = require('node:assert/strict');

assert.ok(true);
// OK
assert.ok(1);
// OK

assert.ok();
// AssertionError: No value argument passed to `assert.ok()`

assert.ok(false, 'it\'s false');
// AssertionError: it's false

// In the repl:
assert.ok(typeof 123 === 'string');
// AssertionError: false == true

// In a file (e.g. test.js):
assert.ok(typeof 123 === 'string');
// AssertionError: The expression evaluated to a falsy value:
//
//   assert.ok(typeof 123 === 'string')

assert.ok(false);
// AssertionError: The expression evaluated to a falsy value:
//
//   assert.ok(false)

assert.ok(0);
// AssertionError: The expression evaluated to a falsy value:
//
//   assert.ok(0)
import assert from 'node:assert/strict';

// Using `assert()` works the same:
assert(0);
// AssertionError: The expression evaluated to a falsy value:
//
//   assert(0)const assert = require('node:assert');

// Using `assert()` works the same:
assert(0);
// AssertionError: The expression evaluated to a falsy value:
//
//   assert(0)

相關用法


注:本文由純淨天空篩選整理自nodejs.org大神的英文原創作品 assert.ok(value[, message])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。