我有一个类似于以下内容的 mongoose 对象架构:
var postSchema = new Schema({
imagePost: {
images: [{
url: String,
text: String
}]
});
我正在尝试使用以下内容创建新帖子:
var new_post = new Post();
new_post.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.images.push(imageObj);
}
new_post.save();
但是,一旦我保存了帖子,它就会使用 images 属性的空数组创建。我究竟做错了什么?