此代码呈现页面并将文本打印到控制台,但不会增加数据库中的值
result.findOneAndUpdate({name:'score7'} ,{$inc:{text2:"11"}});
console.log('123');
next();
}, function (req, res) {
result.find({$or: [{name:'police'} , {name:'score7'}]}, function(err, data){
res.render('result_other', {result: data, title: 'Отчет из police'});
});
});```