revalidatorNodejs 驗證器
revalidator 是一款跨瀏覽器的 Node.js 驗證器,是 resourceful 和 flatiron 正在使用的驗證器。
示例
revalidator 的核心是很簡單和簡潔的: revalidator.validate(obj, schema):
var revalidator = require('revalidator');
console.dir(revalidator.validate(someObject, {
properties: {
url: {
description: 'the url the object should be stored at',
type: 'string',
pattern: '^/[^#%&*{}\\:<>?\/+]+$',
required: true
},
challenge: {
description: 'a means of protecting data (insufficient for production, used as example)',
type: 'string',
minLength: 5
},
body: {
description: 'what to store at the url',
type: 'any',
default: null
}
}
}));評論
圖片
表情
