NPM酷库,每天两分钟,了解一个流行NPM库。·

在NPM酷库042中,我们了解到了JSON Schema数据模式验证,以及ajv库。今天我们来学习另一个对象数据验证的库joi。

joi

joi 是语义化的对象数据模式验证库,所谓语义化,是指其方法名能够明确表达其含义。

const Joi = require('joi');

// 声明模式
const schema = Joi.object().keys({
    username: Joi.string().alphanum().min(3).max(30).required(),
    password: Joi.string().regex(/^[a-zA-Z0-9]{3,30}$/),
    access_token: [Joi.string(), Joi.number()],
    birthyear: Joi.number().integer().min(1900).max(2013),
    email: Joi.string().email()
}).with('username', 'birthyear').without('password', 'access_token');

// 验证
const result = Joi.validate({ username: 'abc', birthyear: 1994 }, schema);

// result.error === null -> valid

注意:joi并非是JSON Schema标准的实现,另外,使用ajv验证JSON Schema可以将模式配置信息保存在.json文件中,因为JSON Schema模式是声明式的,而joi则必须在代码文件中实现模式配置,因为joi的语义化必须以函数调用来实现。

参考资料

https://github.com/hapijs/joi

https://github.com/hapijs/joi...


脉冲云_梁兴臣
616 声望194 粉丝

脉冲云CTO,JS全栈开发,DevOps实施,开发体验优化,开发效率提升