Display data from nested query nodejs in pug form









up vote
0
down vote

favorite












I am trying to build a portal where users will upload photos and corresponding disclosures(having details about the uploaded pics). Users will send the disclosures and the photos for review. The review is a Schema as below:



router.get('/reviews', function(req, res) 
var reviewMap = ;
var disclosureMap = ;
var photoMap = ;

Review.find(, function(err, reviews)
if(err) throw err;

reviews.forEach(function(review) // Iterate over all reviews

reviewMap[review._id] = review;
Disclosure.findById(review.disc_id, function(err, disclosure) // Find disclosure id of that review
if(err) throw err;
// console.log(disclosure) // This prints the whole disclosure properly
disclosureMap[review._id] = disclosure;
);

Photo.find(
'_id': $in: review.doc_id

, function(err, docs)
//console.log(docs); // This prints out details about the pics properly
photoMap[review._id] = docs;
);
);
//console.log(reviewMap);
for(var index in reviewMap)
console.log(index);
console.log(disclosureMap[index]);
console.log(photoMap[index]);
console.log("Next");

res.render('reviews', title: 'Photo Reviews', msg:req.query.msg,
reviewlist: reviewMap) ;
);
);


This prints:



5be69b9ef365292b0ccf4067
undefined
undefined
Next
(node:4216) [DEP0079] DeprecationWarning: Custom inspection function on Objects
via .inspect() is deprecated


The Review Schema is:



let reviewSchema = mongoose.Schema(

ts: type: String ,

disc_id:
type: mongoose.Schema.Types.ObjectId,
ref: 'Disclosure',
,
doc_id: [
type: mongoose.Schema.Types.ObjectId,
ref: 'Photos',
],

);


The reviewMap is:



 '5be69b9ef365292b0ccf4067':
_id: 5be69b9ef365292b0ccf4067,
disc_id: 5be576add1c7b62438c804c7,
ts: 'Sat Nov 10 2018 14:19:34 GMT+0530 (India Standard Time)',
__v: 0,
doc_id: [ 5be536fcb01fac1c4c94ae87, 5be536d0b01fac1c4c94ae86 ]


My question is how do I display the Review ID, Disclosure ID and the Photos uploaded for this review inside the Pug form(res.render('review')). I am not able to display the pics using only the doc_id in the Pug form, if I pass only the reviewList directly. It would also be fine if there is a method to display data from nested schemas using only ObjectID of the Schemas.



Can you please point me in the right direction?



Thanks,
Prathamesh










share|improve this question





















  • You should consider editing this question to shrink it down to only the code relevant to your problem - there are a lot of details around retrieving the data and how it is stored yet that is not where your problem lies. However, as you are having issues with your pug template then you should also include that in the edit.
    – Graham
    Nov 11 at 23:02














up vote
0
down vote

favorite












I am trying to build a portal where users will upload photos and corresponding disclosures(having details about the uploaded pics). Users will send the disclosures and the photos for review. The review is a Schema as below:



router.get('/reviews', function(req, res) 
var reviewMap = ;
var disclosureMap = ;
var photoMap = ;

Review.find(, function(err, reviews)
if(err) throw err;

reviews.forEach(function(review) // Iterate over all reviews

reviewMap[review._id] = review;
Disclosure.findById(review.disc_id, function(err, disclosure) // Find disclosure id of that review
if(err) throw err;
// console.log(disclosure) // This prints the whole disclosure properly
disclosureMap[review._id] = disclosure;
);

Photo.find(
'_id': $in: review.doc_id

, function(err, docs)
//console.log(docs); // This prints out details about the pics properly
photoMap[review._id] = docs;
);
);
//console.log(reviewMap);
for(var index in reviewMap)
console.log(index);
console.log(disclosureMap[index]);
console.log(photoMap[index]);
console.log("Next");

res.render('reviews', title: 'Photo Reviews', msg:req.query.msg,
reviewlist: reviewMap) ;
);
);


This prints:



5be69b9ef365292b0ccf4067
undefined
undefined
Next
(node:4216) [DEP0079] DeprecationWarning: Custom inspection function on Objects
via .inspect() is deprecated


The Review Schema is:



let reviewSchema = mongoose.Schema(

ts: type: String ,

disc_id:
type: mongoose.Schema.Types.ObjectId,
ref: 'Disclosure',
,
doc_id: [
type: mongoose.Schema.Types.ObjectId,
ref: 'Photos',
],

);


The reviewMap is:



 '5be69b9ef365292b0ccf4067':
_id: 5be69b9ef365292b0ccf4067,
disc_id: 5be576add1c7b62438c804c7,
ts: 'Sat Nov 10 2018 14:19:34 GMT+0530 (India Standard Time)',
__v: 0,
doc_id: [ 5be536fcb01fac1c4c94ae87, 5be536d0b01fac1c4c94ae86 ]


My question is how do I display the Review ID, Disclosure ID and the Photos uploaded for this review inside the Pug form(res.render('review')). I am not able to display the pics using only the doc_id in the Pug form, if I pass only the reviewList directly. It would also be fine if there is a method to display data from nested schemas using only ObjectID of the Schemas.



Can you please point me in the right direction?



Thanks,
Prathamesh










share|improve this question





















  • You should consider editing this question to shrink it down to only the code relevant to your problem - there are a lot of details around retrieving the data and how it is stored yet that is not where your problem lies. However, as you are having issues with your pug template then you should also include that in the edit.
    – Graham
    Nov 11 at 23:02












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am trying to build a portal where users will upload photos and corresponding disclosures(having details about the uploaded pics). Users will send the disclosures and the photos for review. The review is a Schema as below:



router.get('/reviews', function(req, res) 
var reviewMap = ;
var disclosureMap = ;
var photoMap = ;

Review.find(, function(err, reviews)
if(err) throw err;

reviews.forEach(function(review) // Iterate over all reviews

reviewMap[review._id] = review;
Disclosure.findById(review.disc_id, function(err, disclosure) // Find disclosure id of that review
if(err) throw err;
// console.log(disclosure) // This prints the whole disclosure properly
disclosureMap[review._id] = disclosure;
);

Photo.find(
'_id': $in: review.doc_id

, function(err, docs)
//console.log(docs); // This prints out details about the pics properly
photoMap[review._id] = docs;
);
);
//console.log(reviewMap);
for(var index in reviewMap)
console.log(index);
console.log(disclosureMap[index]);
console.log(photoMap[index]);
console.log("Next");

res.render('reviews', title: 'Photo Reviews', msg:req.query.msg,
reviewlist: reviewMap) ;
);
);


This prints:



5be69b9ef365292b0ccf4067
undefined
undefined
Next
(node:4216) [DEP0079] DeprecationWarning: Custom inspection function on Objects
via .inspect() is deprecated


The Review Schema is:



let reviewSchema = mongoose.Schema(

ts: type: String ,

disc_id:
type: mongoose.Schema.Types.ObjectId,
ref: 'Disclosure',
,
doc_id: [
type: mongoose.Schema.Types.ObjectId,
ref: 'Photos',
],

);


The reviewMap is:



 '5be69b9ef365292b0ccf4067':
_id: 5be69b9ef365292b0ccf4067,
disc_id: 5be576add1c7b62438c804c7,
ts: 'Sat Nov 10 2018 14:19:34 GMT+0530 (India Standard Time)',
__v: 0,
doc_id: [ 5be536fcb01fac1c4c94ae87, 5be536d0b01fac1c4c94ae86 ]


My question is how do I display the Review ID, Disclosure ID and the Photos uploaded for this review inside the Pug form(res.render('review')). I am not able to display the pics using only the doc_id in the Pug form, if I pass only the reviewList directly. It would also be fine if there is a method to display data from nested schemas using only ObjectID of the Schemas.



Can you please point me in the right direction?



Thanks,
Prathamesh










share|improve this question













I am trying to build a portal where users will upload photos and corresponding disclosures(having details about the uploaded pics). Users will send the disclosures and the photos for review. The review is a Schema as below:



router.get('/reviews', function(req, res) 
var reviewMap = ;
var disclosureMap = ;
var photoMap = ;

Review.find(, function(err, reviews)
if(err) throw err;

reviews.forEach(function(review) // Iterate over all reviews

reviewMap[review._id] = review;
Disclosure.findById(review.disc_id, function(err, disclosure) // Find disclosure id of that review
if(err) throw err;
// console.log(disclosure) // This prints the whole disclosure properly
disclosureMap[review._id] = disclosure;
);

Photo.find(
'_id': $in: review.doc_id

, function(err, docs)
//console.log(docs); // This prints out details about the pics properly
photoMap[review._id] = docs;
);
);
//console.log(reviewMap);
for(var index in reviewMap)
console.log(index);
console.log(disclosureMap[index]);
console.log(photoMap[index]);
console.log("Next");

res.render('reviews', title: 'Photo Reviews', msg:req.query.msg,
reviewlist: reviewMap) ;
);
);


This prints:



5be69b9ef365292b0ccf4067
undefined
undefined
Next
(node:4216) [DEP0079] DeprecationWarning: Custom inspection function on Objects
via .inspect() is deprecated


The Review Schema is:



let reviewSchema = mongoose.Schema(

ts: type: String ,

disc_id:
type: mongoose.Schema.Types.ObjectId,
ref: 'Disclosure',
,
doc_id: [
type: mongoose.Schema.Types.ObjectId,
ref: 'Photos',
],

);


The reviewMap is:



 '5be69b9ef365292b0ccf4067':
_id: 5be69b9ef365292b0ccf4067,
disc_id: 5be576add1c7b62438c804c7,
ts: 'Sat Nov 10 2018 14:19:34 GMT+0530 (India Standard Time)',
__v: 0,
doc_id: [ 5be536fcb01fac1c4c94ae87, 5be536d0b01fac1c4c94ae86 ]


My question is how do I display the Review ID, Disclosure ID and the Photos uploaded for this review inside the Pug form(res.render('review')). I am not able to display the pics using only the doc_id in the Pug form, if I pass only the reviewList directly. It would also be fine if there is a method to display data from nested schemas using only ObjectID of the Schemas.



Can you please point me in the right direction?



Thanks,
Prathamesh







javascript node.js mongodb pug mongoose-schema






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 11 at 7:31









Capricorn

3261414




3261414











  • You should consider editing this question to shrink it down to only the code relevant to your problem - there are a lot of details around retrieving the data and how it is stored yet that is not where your problem lies. However, as you are having issues with your pug template then you should also include that in the edit.
    – Graham
    Nov 11 at 23:02
















  • You should consider editing this question to shrink it down to only the code relevant to your problem - there are a lot of details around retrieving the data and how it is stored yet that is not where your problem lies. However, as you are having issues with your pug template then you should also include that in the edit.
    – Graham
    Nov 11 at 23:02















You should consider editing this question to shrink it down to only the code relevant to your problem - there are a lot of details around retrieving the data and how it is stored yet that is not where your problem lies. However, as you are having issues with your pug template then you should also include that in the edit.
– Graham
Nov 11 at 23:02




You should consider editing this question to shrink it down to only the code relevant to your problem - there are a lot of details around retrieving the data and how it is stored yet that is not where your problem lies. However, as you are having issues with your pug template then you should also include that in the edit.
– Graham
Nov 11 at 23:02

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53246707%2fdisplay-data-from-nested-query-nodejs-in-pug-form%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53246707%2fdisplay-data-from-nested-query-nodejs-in-pug-form%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Top Tejano songwriter Luis Silva dead of heart attack at 64

ReactJS Fetched API data displays live - need Data displayed static

Evgeni Malkin