如何使用sequelize节点更新logging?
我使用NodeJS创build了一个RESTful API,express,express-resource和Sequelize用于pipe理存储在MySQL数据库中的数据集。
我试图找出如何使用Sequelize正确更新logging。
我创build一个模型:
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
variables的logging。
首先我build立一个模型,然后使用updateAttributes
方法来更新logging。
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更新logging的正确方法?
我没有使用过Sequelize ,但是在阅读了它的文档之后,很明显你正在实例化一个新的对象 ,这就是为什么Sequelize会在db中插入一条新logging的原因。
首先,您需要search该logging,然后获取该logging,然后才能更改其属性并进行更新 ,例如:
Project.find({ where: { title: 'aProject' } }) .on('success', function (project) { // Check if record exists in db if (project) { project.updateAttributes({ title: 'a very different title now' }) .success(function () {}) } })
从版本2.0.0开始,您需要将where子句包装在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
,而是使用可接受的承诺。
所以上面的代码将如下所示:
Project.update( { title: 'a very different title now' }, { where: { _id: 1 } } ) .then(result => handleResult(result) ) .catch(err => handleError(err) )
既然sequelize v1.7.0,你现在可以在模型上调用update()方法。 更干净
例如:
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 });
我认为使用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) })
此解决scheme已弃用
失败|失败|错误()被弃用,并将在2.1中被移除,请使用promise-style。
所以你必须使用
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()
问候
公共静态更新(值:对象,选项:对象):Promise>
检查文档一次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] })