2

我正在尝试使用 .hole 来验证请求的express-validator主体是单个数组,所以我没有字段名称。

我正在使用版本 4express-validator的新 API。express

身体是这样的:

["item1","item2"]

我的代码:

app.post('/mars/:Id/Id', [
    check('id')
        .isLength({  max: 10 })

    .body() //try many ways to get the body. most examples i found were for the old api
    .custom((item) => Array.isArray(item))
],
    (req, res, next) => {           
       const data: string = matchedData(req); //using this method to only pass validated data to the business layer
       return controller.mars(data); //id goes in data.id. i expect there should be an data.body once the body is validated too.
    }

我如何验证身体?

4

2 回答 2

1

我按照文档中的说明进行了操作,代码如下:只需在代码中的 expressValidator 引用之后声明自定义验证器。

app.use(expressValidator());
app.use(expressValidator({
    customValidators: {
        isArray: function(value) {
            return Array.isArray(value);
        }
    }
}));

之后,您可以像这样检查有效性:

req.checkBody('title', 'title é obrigatório').notEmpty();
req.checkBody('media','media must be an array').isArray();

我在我的项目中使用了 3.2.0 版本,我可以实现这种行为。这是我的请求正文的示例:exports.validateAddArrayItem = function(req, res, next) { { title: 'foo', media: [1,2,3] }

此外,如果您不想更改您的回复,我曾经做过这样的验证:

if (req.body.constructor === Array) {
        req.body[0].employee_fk = tk.employee_id;
    }
    req.assert('item', 'The body from request must be an array').isArray();

    var errors = req.validationErrors();
    if (errors) {
        var response = { errors: [] };
        errors.forEach(function(err) {
            response.errors.push(err.msg);
        });
        return res.status(400).json(response);
    }
    return next();
};

这是我的请求正文的示例:

[{
employeefk: 1,
item: 4
}]
于 2018-02-10T14:37:03.790 回答
-1

如果您使用的是 ajax,请尝试将您的数组放在一个对象中,如下所示:

$.ajax({
    type: "POST",
    url: url,
    data: { arr: ["item1", "item2"] },
    success: function (data) {
        // process data here
    }
});

现在您可以使用arr标识符来应用验证规则:

const { check, body, validationResult } = require('express-validator/check');

...

app.post('/mars/:Id/Id', [
    check('chatId').isLength({  max: 10 }),
    body('arr').custom((item) => Array.isArray(item))
], (req, res, next) => {           
       const data: string = matchedData(req); 
       return controller.mars(data); 
});
于 2018-02-10T14:51:18.263 回答