Waterline: the object associated with the model to create (sails)

    Token.create({
      type: 'invite-into-org',
      email: email,
      initiator: organization,
      sender: req.user,
      metadata: {
        firstName: req.body.firstName,
        lastName: req.body.lastName,
        role: req.body.role
      }
    }).exec(function(err, token) {
      if(err) { return callback(err); }
        console.log("THE TOKEN", token)
      callback(null, token);
    });

      

Prints out the console with the following content:

THE TOKEN { type: 'invite-into-org',
19:14:39 web.1 |    email: 'somoone@gmail.com',
19:14:39 web.1 |    initiator: 8,
19:14:39 web.1 |    sender: 9,
19:14:39 web.1 |    metadata: { firstName: 'Vasyl', lastName: 'Romanchak', role: 'author' },
19:14:39 web.1 |    createdAt: '2015-07-03T16:14:39.964Z',
19:14:39 web.1 |    updatedAt: '2015-07-03T16:14:39.964Z',
19:14:39 web.1 |    id: '5596b4efe4eccd7b519eedef' }

      

Is there a way to fill in the initiator and sender fields?

Token.create ({}). populate ('sender'). exec (console.log) - still the same

+3


source to share


1 answer


My solution is using the dumbest way, which re-requests the result, but uses a Promise for better readability.



Token
  .create({
    type     : 'invite-into-org',
    email    : email,
    initiator: organization,
    sender   : req.user,
    metadata : {
      firstName: req.body.firstName,
      lastName : req.body.lastName,
      role     : req.body.role
    }
  })
  .then(function (token) {
    return Token.findOne({id: token.id}).populateAll();
  })
  .then(function (record) {
    console.log('THE TOKEN', record);

    callback(null, record);
  })
  .catch(callback);

      

+3


source







All Articles