comment.js 261 B

123456789101112
  1. const {Comment} = require('../../model/comment');
  2. module.exports = async function (req, res) {
  3. const {content, aid, uid} = req.body;
  4. await Comment.create({
  5. content,
  6. aid,
  7. uid,
  8. time: new Date()
  9. });
  10. res.redirect('/home/article?id='+aid);
  11. }