आपको imagePost
याद आ रहा है आपकी नई वस्तु में आपकी स्कीमा की वस्तु। इसके बजाय इसे आजमाएं:
var new_post = new Post();
new_post.imagePost = { images: [] };
for (var i in req.body.post_content.images) {
var image = req.body.post_content.images[i];
var imageObj = { url: image['url'], text: image['text'] };
new_post.imagePost.images.push(imageObj);
}
new_post.save();