NPM酷庫043:joi,語義化模式驗證

NPM酷庫,天天兩分鐘,瞭解一個流行NPM庫。·git

在NPM酷庫042中,咱們瞭解到了JSON Schema數據模式驗證,以及ajv庫。今天咱們來學習另外一個對象數據驗證的庫joi。github

joi

joi 是語義化的對象數據模式驗證庫,所謂語義化,是指其方法名可以明確表達其含義。json

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的語義化必須以函數調用來實現。api

參考資料

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

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

相關文章
相關標籤/搜索