Guest User

Untitled

a guest
Feb 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. {
  2. "_id" : ObjectId("5a8ea03d2601be24b086ccd4"),
  3. "userId" : 20,
  4. "text" : "Hi",
  5. "__v" : 0
  6. }
  7.  
  8. {
  9. "_id" : ObjectId("5a8ea03d2601be24b086ccd4"),
  10. "userId" : 20,
  11. "voice" : "d2601be24bd22601be24b",
  12. "__v" : 0
  13. }
  14.  
  15. Message
  16. .find({userId: '20'}, {_id: 0, text: ''})
  17. .exec((err, obj) => {
  18. if (err) {
  19. console.log(err);
  20. }
  21.  
  22. for (const val of Object.values(obj)) {
  23. console.log(val.text);
  24. }
  25. });
  26.  
  27. Hi // for text
  28. undefined // for voice
Add Comment
Please, Sign In to add comment