Locaft/auth/node_modules/express-validator/docs/feature-whole-body-validati...

36 lines
843 B
Markdown
Raw Normal View History

2020-11-08 09:28:21 -08:00
---
id: whole-body-validation
title: Whole Body Validation
---
Sometimes you need to validate a request whose body is a string, an array, or even a number!
That's why you can omit the field to validate, and check `req.body` directly:
```js
const bodyParser = require('body-parser');
const express = require('express');
const { body } = require('express-validator');
const app = express();
// Will handle text/plain requests
app.use(bodyParser.text());
app.post('/recover-password', body().isEmail(), (req, res) => {
// Assume the validity of the request was already checked
User.recoverPassword(req.body).then(() => {
res.send('Password recovered!');
});
});
```
This setup should be able to handle the following request:
```http
POST /recover-password HTTP/1.1
Host: localhost:3000
Content-Type: text/plain
my@email.com
```