Hieudz
Rating
-
Bài tập
197
Điểm
11776
Rating #
-
Điểm #
5141
Dương Đức Hiếu (THCS Lê Lợi)
Giới thiệu
app.post('/api/update-views', async (req, res) => {
const userId = req.session.userId || 'LeAnhKhoi';
const user = await User.findOneAndUpdate(
{ username: userId },
{ $inc: { views: 1 } },
{ new: true, upsert: true }
);
res.json({ views: user.views });
});