gpt4 book ai didi

javascript - 使用断言来验证函数参数是一种不好的做法吗?

转载 作者:太空宇宙 更新时间:2023-11-04 00:23:22 24 4
gpt4 key购买 nike

我希望验证我获得的参数在给定一组情况下是否有效。特别是在生成 SQL 时,我想验证传递给函数的对象是否与服务器端同步或有效。

我想要解决这个问题的最自然的方法是使用以下内容

var InvalidIdValue = (actual) => return new Error(`Id: ${actual} is invalid. Expected id >= 1`)
var InvalidIdType = (actual, expectedType) => return new Error(`Id: ${typeof actual} is invalid. Expected ${typeof expectedType}`)

function sync(query, obj) {
if(typeof obj.id != typeof 1)
return InvalidIdValue(obj.id)
if(obj.id < 1)
return InvalidIdValue(obj.id, 1)
// Pull the data from server
}

但是使用断言,我可以将其缩短为

var assert = require('assert')

function sync(query, obj) {
assert.ok(typeof obj == typeof 1 && obj.id > 0, 'Id needs to be an integer larger than 0')
// Pull the data from the server
}

我不介意这两种方法,但是这样做是一种不好的做法吗?我提出这个问题的原因是因为我认为断言仅适用于 TDD。

谢谢:)

最佳答案

只要您同意将断言作为依赖项,使用断言就没有问题。从 .ok 运行的代码是一行,用于检查是否提供了真值。如果为假,则调用 .fail,这会抛出一个带有相关事件、可记录信息的错误。

编辑:

以下是源代码中的函数 .ok.fail:

function fail(actual, expected, message, operator, stackStartFunction) {
throw new assert.AssertionError({
message: message,
actual: actual,
expected: expected,
operator: operator,
stackStartFunction: stackStartFunction
});
}

// EXTENSION! allows for well behaved errors defined elsewhere.
assert.fail = fail;

// 4. Pure assertion tests whether a value is truthy, as determined
// by !!guard.
// assert.ok(guard, message_opt);
// This statement is equivalent to assert.equal(true, !!guard,
// message_opt);. To test strictly for the value true, use
// assert.strictEqual(true, guard, message_opt);.

function ok(value, message) {
if (!value) fail(value, true, message, '==', assert.ok);
}
assert.ok = ok;

关于javascript - 使用断言来验证函数参数是一种不好的做法吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43746081/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com