Advertisement
dllo4147

Untitled

Oct 15th, 2014
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. Student.findOne({id:3}).populate('courses').exec(function(err, thisStudent) {
  2. for (i = 0; i < thisStudent.courses.length; i++) {
  3. var uc = thisStudent.courses[i].unit_code;
  4. Course.findOne({unit_code = uc}).populate(โ€˜lecturestreamsโ€™).exec(function(err, thisCourse) {
  5.  
  6. res.view() {
  7. course: ?????????
  8. }
  9.  
  10. }
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement