1.0.4 • Published 6 years ago

egg-validate-ext v1.0.4

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

egg-validate

NPM version build status Test coverage David deps Known Vulnerabilities npm download

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.

License

MIT

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago