简体   繁体   中英

Updating model with Sequelize JS

I'm building a simple API with Express and Sequelize JS. I tried to update an record with req.School but nothing happend. I shared the code below. Also I got no error for output. Can you help me ?

Controller js

module.exports.params = function(req, res, next, id) {
School.find({
          where: {
            id: id
          }
        })
        .then(function(school) {
          if (!school) {
            next(new Error("School not found by given ID"));
          }else {
            req.School = school;
            next();
          }
        }, function(err) {
          next(err);
        });
    };
module.exports.delete = function (req,res,next) {
    req.School.Status = SysEnums.Deleted;
      School.update(req.School,{
        where:{
          id:req.School.id
        }
      }).then(function (deleted) {
        res.json(deleted);
      });
    };

Route JS

var router = require("express").Router();
var controller = require("../Controllers/SchoolController");

router.param("id",controller.params);

router.route("/").get(controller.get);

router.route("/:id").get(controller.getOne).delete(controller.delete);

module.exports = router;

Since the params method, req.School is a sequelize object. Here is the params method.

module.exports.params = function(req, res, next, id) {

  School.find({
      where: {
        id: id
      }
    })
    .then(function(school) {
      if (!school) {
        next(new Error("School not found by given ID"));
      }else {
        req.School = school;
        next();
      }
    }, function(err) {
      next(err);
    });
};

As @Shivam said it' sa sequelize object, I could use provided methods. I want to soft delete my record, so here is my delete method with Sequelize JS.

module.exports.delete = function(req, res, next) {

  try {
    req.School.Status = SysEnums.Deleted;
    req.School.save().then(function(entity) {
      res.json(entity);
    });
  } catch (e) {
    console.log(e);
  }
};

@PandhiBhaumik

Thank you for your help. I' ll try to use build method as a second option.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM