NPM酷库043:joi,语义化形式考证

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…

    原文作者:脉冲云_梁兴臣
    原文地址: https://segmentfault.com/a/1190000013315751
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞