我正在使用MERN堆栈制作投票应用程序。我用猫鼬表示数据库和后端。
这是我的猫鼬模式:
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
//create a schema
const CarrozaSchema = Schema({
nombre: {
type: String
},
curso: {
type: String
},
votos: Number
});
module.exports = Carroza = mongoose.model("carroza", CarrozaSchema);
这是管理选票的路线:
const express = require("express");
const router = express.Router();
const mongoose = require("mongoose");
//Carroza model
const Carroza = require("../../models/Carroza");
// @route POST api/votos
// @desc Realizar el voto
// @access public
router.post("/", (req, res) => {
Carroza.findOne({ nombre: req.body.nombre })
.then(carroza => {
if (!carroza) {
return res.status(404).json(req.body);
}
carroza.votos = carroza.votos + 1; //Here is where the votes are update
carroza.save();
res.status(200).json(req.body);
})
.catch(err => res.status(404).json(err));
});
module.exports = router;
在前端,用户具有“ carrozas”列表,该按钮带有一个按钮,可以为他们选择的投票添加投票。 this is what the user sees 问题是,如果两个用户同时投票给同一“ carroza”,则只会添加一个投票。
答案 0 :(得分:0)
尽管我看不到该代码有问题,但即使仍然不起作用,请尝试将猫鼬findOneAndUpdate()
与$inc
一起使用。这是一个示例:
Carroza.findOneAndUpdate({ nombre: req.body.nombre }, {$inc:{votos:1}}, function(err, result){
if(err) res.json(err); // whatever error
else res.json(result); // whatever result
})
这也将减少查询时间,因为代码很短,并且运行单个查询而不是两个查询。
这类问题通常在高流量的情况下面临,并且可以通过使用Redis,RabbitMQ和Kafka等技术来解决。
希望有帮助!让我知道它是否有效。