Advertisement
Guest User

Untitled

a guest
May 31st, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. subDocSchema.post('save'. function (doc) {
  2. console.log(doc);
  3. }
  4.  
  5. parent.subDocs.push({note: 'new doc'});
  6. parent.save();
  7.  
  8. // {note: 'new doc'}
  9. // {note: 'old doc'}
  10. // ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement