egg-validate
Validate plugin for egg.
see parameter for more information such as custom rule.
Install
$ npm i egg-validate --save
Usage
// {app_root}/config/plugin.js
exports.validate = {
package: 'egg-validate',
};
Validate Request Body
// {app_root}/app/controller/home.js
exports.index = function* () {
this.validate({ id: 'id' }); // will throw if invalid
// or
const errors = this.validator.validate({ id: 'id' }, this.request.body);
};
Extend Rules
- app.js
app.validator.addRule('jsonString', (rule, value) => {
try {
JSON.parse(value);
} catch (err) {
return 'must be json string';
}
});
Questions & Suggestions
Please open an issue here.