“Продолжить обновление” Ответ

Обновить данные в продолжении

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

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

Repulsive Raccoon

Обновить данные в продолжении


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
}
})
Repulsive Raccoon

Продолжить обновление

models.User.destroy({where: {userID: '유저ID'}})
  .then(result => {
     res.json({});
  })
  .catch(err => {
     console.error(err);
  });
Cute Crossbill

Ответы похожие на “Продолжить обновление”

Вопросы похожие на “Продолжить обновление”

Больше похожих ответов на “Продолжить обновление” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования