Alon Amir
Alon Amir

Reputation: 5015

SailsJS: beforeUpdate (Lifecycle callback), access current values

It's clear how to access the new values, the first argument contains them

beforeUpdate: function (values, cb) {....}

But how can I access the current values, that are to be replaced?

Upvotes: 3

Views: 1695

Answers (1)

Meeker
Meeker

Reputation: 5979

In order do access current values you will have to make the call and get the current record.

models/user.js
beforeCreate: function (values, cb) {
    User.findOne(this.update.arguments[0].id || this.update.arguments[0]).exec(err, function(originalUser){/*...*/})
}

Also check out https://github.com/balderdashy/waterline/issues/1004#issuecomment-102432862 , where this issue is being discussed. Should provide insight into getting the ID and a current solution.

The solution above was updated to reflect the comments.

Upvotes: 2

Related Questions