当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。