จะอัปเดตระเบียนโดยใช้ sequelize สำหรับโหนดได้อย่างไร


117

ฉันกำลังสร้าง RESTful API ด้วย NodeJS, express, express-resource และ Sequelize ที่ใช้จัดการชุดข้อมูลที่เก็บไว้ในฐานข้อมูล MySQL

ฉันกำลังพยายามหาวิธีอัปเดตระเบียนอย่างถูกต้องโดยใช้ Sequelize

ฉันสร้างแบบจำลอง:

module.exports = function (sequelize, DataTypes) {
  return sequelize.define('Locale', {
    id: {
      type: DataTypes.INTEGER,
      autoIncrement: true,
      primaryKey: true
    },
    locale: {
      type: DataTypes.STRING,
      allowNull: false,
      unique: true,
      validate: {
        len: 2
      }
    },
    visible: {
      type: DataTypes.BOOLEAN,
      defaultValue: 1
    }
  })
}

จากนั้นในตัวควบคุมทรัพยากรของฉันฉันกำหนดการดำเนินการอัปเดต

ที่นี่ฉันต้องการอัปเดตเรกคอร์ดที่ id ตรงกับreq.paramsตัวแปร

ก่อนอื่นฉันสร้างแบบจำลองจากนั้นฉันใช้updateAttributesวิธีการอัปเดตบันทึก

const Sequelize = require('sequelize')
const { dbconfig } = require('../config.js')

// Initialize database connection
const sequelize = new Sequelize(dbconfig.database, dbconfig.username, dbconfig.password)

// Locale model
const Locales = sequelize.import(__dirname + './models/Locale')

// Create schema if necessary
Locales.sync()


/**
 * PUT /locale/:id
 */

exports.update = function (req, res) {
  if (req.body.name) {
    const loc = Locales.build()

    loc.updateAttributes({
      locale: req.body.name
    })
      .on('success', id => {
        res.json({
          success: true
        }, 200)
      })
      .on('failure', error => {
        throw new Error(error)
      })
  }
  else
    throw new Error('Data not provided')
}

ตอนนี้สิ่งนี้ไม่ได้สร้างแบบสอบถามการอัปเดตอย่างที่ฉันคาดไว้

แบบสอบถามแทรกจะดำเนินการแทน:

INSERT INTO `Locales`(`id`, `locale`, `createdAt`, `updatedAt`, `visible`)
VALUES ('1', 'us', '2011-11-16 05:26:09', '2011-11-16 05:26:15', 1)

คำถามของฉันคือ: วิธีที่เหมาะสมในการอัปเดตระเบียนโดยใช้ Sequelize ORM คืออะไร?

คำตอบ:


110

ฉันไม่ได้ใช้Sequelizeแต่หลังจากอ่านเอกสารแล้วเห็นได้ชัดว่าคุณกำลังสร้างอินสแตนซ์ออบเจ็กต์ใหม่นั่นคือเหตุผลที่ Sequelize แทรกระเบียนใหม่ลงในฐานข้อมูล

ก่อนอื่นคุณต้องค้นหาระเบียนนั้นดึงข้อมูลและหลังจากนั้นก็เปลี่ยนคุณสมบัติและอัปเดตเช่น:

Project.find({ where: { title: 'aProject' } })
  .on('success', function (project) {
    // Check if record exists in db
    if (project) {
      project.update({
        title: 'a very different title now'
      })
      .success(function () {})
    }
  })

วิธีนี้ได้ผล แต่ฉันต้องเปลี่ยน.successเป็น.then
Adam F

1
ควรProject.findOne(หรือไม่?
JBaczuk

2
คำถามเก่า แต่มีความเกี่ยวข้องหากค้นหาในวันนี้ (เหมือนที่เคยทำ) ตั้งแต่ Sequelize 5 วิธีที่ถูกต้องในการค้นหาเร็กคอร์ดคือการfindByPk(req.params.id)ส่งคืนอินสแตนซ์
cstrutton

2
ไม่ควรแนะนำเนื่องจากจะส่งคำค้นหา 2 รายการซึ่งสามารถทำได้โดยการสืบค้นเดียว โปรดตรวจสอบคำตอบอื่น ๆ ด้านล่าง
TᴀʀᴇǫMᴀʜᴍᴏᴏᴅ

219

ตั้งแต่เวอร์ชั่น 2.0.0 ที่คุณต้องห่อของคุณที่ประโยคในwhereทรัพย์สิน:

Project.update(
  { title: 'a very different title now' },
  { where: { _id: 1 } }
)
  .success(result =>
    handleResult(result)
  )
  .error(err =>
    handleError(err)
  )

อัพเดท 2016-03-09

เวอร์ชันล่าสุดไม่ได้ใช้จริงsuccessและerrorอีกต่อไป แต่เป็นthenสัญญาที่ใช้งานได้แทน

ดังนั้นโค้ดด้านบนจะมีลักษณะดังนี้:

Project.update(
  { title: 'a very different title now' },
  { where: { _id: 1 } }
)
  .then(result =>
    handleResult(result)
  )
  .catch(err =>
    handleError(err)
  )

ใช้ async / await

try {
  const result = await Project.update(
    { title: 'a very different title now' },
    { where: { _id: 1 } }
  )
  handleResult(result)
} catch (err) {
  handleError(err)
}

http://docs.sequelizejs.com/en/latest/api/model/#updatevalues-options-promisearrayaffectedcount-affectedrows


3
ย้ายเอกสารไปที่sequelize.readthedocs.org/en/latest/api/model/…
topher

คุณมีคะแนนโหวตมากกว่าคำตอบของเธรดแรกฉันคิดว่าควรย้ายไปที่คำตอบแรกของเธรดคำตอบเหล่านี้ ไชโย
aananddham

37

เนื่องจาก sequelize v1.7.0 คุณสามารถเรียกใช้ update () method บนโมเดลได้แล้ว สะอาดกว่ามาก

ตัวอย่างเช่น:

Project.update(

  // Set Attribute values 
        { title:'a very different title now' },

  // Where clause / criteria 
         { _id : 1 }     

 ).success(function() { 

     console.log("Project with id =1 updated successfully!");

 }).error(function(err) { 

     console.log("Project update failed !");
     //handle error here

 });

จะรันการตรวจสอบความถูกต้องด้วยหรือไม่
Marconi

จากสิ่งที่ฉันได้อ่านในเอกสาร API นี่เป็นวิธีที่ต้องการ
Michael J.Calkins

4
เลิกใช้งานไปแล้วจริงๆ ดูอ้างอิง API อย่างเป็นทางการสำหรับรุ่น
Domi

นี่คือเอกสาร ณ เวลาที่แสดงความคิดเห็น - เอกสารเหล่านี้ย้ายไปที่ ReadTheDocs แล้ว
Chris Krycho

1
ดังที่ได้กล่าวไปแล้วสัญกรณ์นี้เลิกใช้งานตั้งแต่ 2.0.0 โปรดอ้างอิงคำตอบนี้ด้วย: stackoverflow.com/a/26303473/831499
Matthias Dietrich

22

และสำหรับผู้ที่กำลังมองหาคำตอบในเดือนธันวาคม 2018 นี่คือไวยากรณ์ที่ถูกต้องโดยใช้คำสัญญา:

Project.update(
    // Values to update
    {
        title:  'a very different title now'
    },
    { // Clause
        where: 
        {
            id: 1
        }
    }
).then(count => {
    console.log('Rows updated ' + count);
});

2
นี่น่าจะเป็นคำตอบอันดับต้น ๆ
decoder7283

ไม่ทำงานในปี 2019: ข้อผิดพลาดในการปฏิเสธที่ไม่สามารถจัดการได้: ค่าไม่ถูกต้อง [ฟังก์ชัน]
หิมะ

13

คำตอบมกราคม 2020
สิ่งที่ต้องเข้าใจคือมีวิธีการอัปเดตสำหรับ Model และวิธีการอัปเดตแยกต่างหากสำหรับอินสแตนซ์ (บันทึก) Model.update()อัปเดตระเบียนที่ตรงกันทั้งหมดและส่งคืนอาร์เรย์โปรดดูเอกสารประกอบตามลำดับ Instance.update()อัปเดตเรกคอร์ดและส่งคืนอ็อบเจ็กต์อินสแตนซ์

ดังนั้นในการอัปเดตระเบียนเดียวต่อคำถามรหัสจะมีลักษณะดังนี้:

SequlizeModel.findOne({where: {id: 'some-id'}})
.then(record => {
  
  if (!record) {
    throw new Error('No record found')
  }

  console.log(`retrieved record ${JSON.stringify(record,null,2)}`) 

  let values = {
    registered : true,
    email: 'some@email.com',
    name: 'Joe Blogs'
  }
  
  record.update(values).then( updatedRecord => {
    console.log(`updated record ${JSON.stringify(updatedRecord,null,2)}`)
    // login into your DB and confirm update
  })

})
.catch((error) => {
  // do seomthing with the error
  throw new Error(error)
})

ดังนั้นใช้Model.findOne()หรือModel.findByPkId()เพื่อจัดการกับอินสแตนซ์เดียว (เรกคอร์ด) จากนั้นใช้ไฟล์Instance.update()


model.update (ข้อมูล, {where: {id: 1}}); ยังคงทำงานใน 202 v6.x ตามคำตอบจาก @kube
dogmatic69

12

ฉันคิดว่าการใช้UPDATE ... WHEREตามที่อธิบายที่นี่และนี่คือแนวทางแบบลีน

Project.update(
      { title: 'a very different title no' } /* set attributes' value */, 
      { where: { _id : 1 }} /* where criteria */
).then(function(affectedRows) {
Project.findAll().then(function(Projects) {
     console.log(Projects) 
})

1
นี่น่าจะเป็นคำตอบที่ได้รับการยอมรับ ด้วยวิธีนี้คุณสามารถตั้งค่าบางฟิลด์เท่านั้นและคุณสามารถระบุเกณฑ์ได้ ขอบคุณมาก :)
Luis Cabrera Benito

5

โซลูชันนี้เลิกใช้แล้ว

ความล้มเหลว | ล้มเหลว | ข้อผิดพลาด () เลิกใช้งานแล้วและจะถูกลบออกใน 2.1 โปรดใช้รูปแบบสัญญาแทน

ดังนั้นคุณต้องใช้

Project.update(

    // Set Attribute values 
    {
        title: 'a very different title now'
    },

    // Where clause / criteria 
    {
        _id: 1
    }

).then(function() {

    console.log("Project with id =1 updated successfully!");

}).catch(function(e) {
    console.log("Project update failed !");
})

และคุณสามารถใช้ได้.complete()เช่นกัน

ความนับถือ


2

ใช้ async และรอ javascript Es6 ที่ทันสมัย

const title = "title goes here";
const id = 1;

    try{
    const result = await Project.update(
          { title },
          { where: { id } }
        )
    }.catch(err => console.log(err));

คุณสามารถส่งคืนผลลัพธ์ ...


1

การอัปเดตแบบคงที่สาธารณะ (ค่า: วัตถุตัวเลือก: วัตถุ): สัญญา>

ตรวจสอบเอกสารหนึ่งครั้งhttp://docs.sequelizejs.com/class/lib/model.js~Model.html#static-method-update

  Project.update(
    // Set Attribute values 
    { title:'a very different title now' },
  // Where clause / criteria 
     { _id : 1 }     
  ).then(function(result) { 

 //it returns an array as [affectedCount, affectedRows]

  })

1

คุณสามารถใช้ Model.update () วิธีการ

ด้วย async / await:

try{
  const result = await Project.update(
    { title: "Updated Title" }, //what going to be updated
    { where: { id: 1 }} // where clause
  )  
} catch (error) {
  // error handling
}

ด้วย. แล้ว (). จับ ():

Project.update(
    { title: "Updated Title" }, //what going to be updated
    { where: { id: 1 }} // where clause
)
.then(result => {
  // code with result
})
.catch(error => {
  // error handling
})

1

สวัสดีในการอัปเดตบันทึกมันง่ายมาก

  1. sequelize ค้นหาบันทึกตาม ID (หรือตามสิ่งที่คุณต้องการ)
  2. จากนั้นคุณผ่านพารามิเตอร์ด้วย result.feild = updatedField
  3. ถ้าเรกคอร์ดไม่มีอยู่ในฐานข้อมูลตามลำดับให้สร้างเรกคอร์ดใหม่ด้วยพารามิเตอร์
  4. ดูตัวอย่างเพื่อทำความเข้าใจเพิ่มเติมเกี่ยวกับ Code # 1 ทดสอบรหัสสำหรับทุกเวอร์ชันภายใต้ V4
const sequelizeModel = require("../models/sequelizeModel");
    const id = req.params.id;
            sequelizeModel.findAll(id)
            .then((result)=>{
                result.name = updatedName;
                result.lastname = updatedLastname;
                result.price = updatedPrice;
                result.tele = updatedTele;
                return result.save()
            })
            .then((result)=>{
                    console.log("the data was Updated");
                })
            .catch((err)=>{
                console.log("Error : ",err)
            });

รหัสสำหรับ V5.0

const id = req.params.id;
            const name = req.body.name;
            const lastname = req.body.lastname;
            const tele = req.body.tele;
            const price = req.body.price;
    StudentWork.update(
        {
            name        : name,
            lastname    : lastname,
            tele        : tele,
            price       : price
        },
        {returning: true, where: {id: id} }
      )
            .then((result)=>{
                console.log("data was Updated");
                res.redirect('/');
            })
    .catch((err)=>{
        console.log("Error : ",err)
    });


0

มีสองวิธีที่คุณสามารถอัปเดตเรกคอร์ดในลำดับต่อเนื่อง

ขั้นแรกหากคุณมีตัวระบุที่ไม่ซ้ำกันคุณสามารถใช้ where clause หรืออื่น ๆ หากคุณต้องการอัปเดตหลายระเบียนด้วยตัวระบุเดียวกัน

คุณสามารถสร้างออบเจ็กต์ทั้งหมดเพื่ออัปเดตหรือคอลัมน์เฉพาะก็ได้

const objectToUpdate = {
title: 'Hello World',
description: 'Hello World'
}

models.Locale.update(objectToUpdate, { where: { id: 2}})

อัปเดตเฉพาะคอลัมน์ที่ระบุ

models.Locale.update({ title: 'Hello World'}, { where: { id: 2}})

ประการที่สองคุณสามารถใช้ค้นหาแบบสอบถามเพื่อค้นหาและใช้ฟังก์ชัน set and save เพื่ออัปเดตฐานข้อมูล


const objectToUpdate = {
title: 'Hello World',
description: 'Hello World'
}

models.Locale.findAll({ where: { title: 'Hello World'}}).then((result) => {
   if(result){
   // Result is array because we have used findAll. We can use findOne as well if you want one row and update that.
        result[0].set(objectToUpdate);
        result[0].save(); // This is a promise
}
})

ใช้ธุรกรรมเสมอขณะอัปเดตหรือสร้างแถวใหม่ ด้วยวิธีนี้จะย้อนกลับการอัปเดตหากมีข้อผิดพลาดหรือหากคุณทำการอัปเดตหลายรายการ:


models.sequelize.transaction((tx) => {
    models.Locale.update(objectToUpdate, { transaction: t, where: {id: 2}});
})
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.