繁体   English   中英

在node.js中过滤发布请求的主体

[英]Filter body of a post request in node.js

有没有办法在node.js + express中简化这段代码?

// Backend handler to register a new participant

app.post('/api/participant', function (req, res, next) {
    // I'm catching the registration form from the request
    var data = req.body;

    // I want to make sure the user is not uploading data other
    // than the fields in the form
    var participant = new Participant({
        first: data.first,
        last: data.last,
        email: data.email,
        category: data.category
    });
    participant.save(...);
});

我没有这样做:

    var participant = new Participant(data);

因为任何人都可以(例如)在数据对象中包含一个score属性,并利用竞争优势开始竞争。

所以我的问题是:我必须在每个后处理程序中执行此操作,还是有一种过滤属性的方法?

快速的Google搜索未找到任何预先存在的库,但是此功能可以很好地完成此工作:

function filterKeys(object, keys) {
    Object.keys(object).forEach(function(key) {
        if(keys.indexOf(key) == -1) {
            delete object[key];
        }
    });
}

举个例子,

var foo = {"foo": 1, "bar": 2, "baz": 3};
console.log(foo); // {"foo": 1, "bar": 2, "baz": 3}
filterKeys(foo, ["foo", "baz"]);
console.log(foo); // {"foo": 1, "baz": 3}

所以在你的情况下,

filterKeys(data, ["first", "last", "email", "category"]);

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM