我正在寻找一些我在创建 crud REST api 时一直在做的乏味样板代码的捷径。我正在使用快递并发布我希望保存的对象。
app.post('/', function(req, res){
var profile = new Profile();
//this is the tedious code I want to shortcut
profile.name = req.body.name;
profile.age = req.body.age;
... and another 20 properties ...
//end tedious code
profile.save()
});
有没有一种简单的方法可以将所有 req.body 属性应用于配置文件对象?我将为不同的模型编写相同的 crud 代码,并且在开发过程中属性会经常变化。