我有以下帖子架构和一系列评论。
var newPost = new Post({
title: req.body.title,
date: Date.now(),
body: req.body.body,
image: req.body.image,
comments: {}
})
newPost.save(function(err){....)
我正在尝试创建帖子,因此将其添加到数据库但尚未发表评论。 (评论将在以后用户评论时添加)。尝试null,{},但没有任何作用:(
答案 0 :(得分:0)
好的,所以我想出来了,我想创建一个包含空数组评论的帖子,所以我所要做的就是:
var newPost = new Post({
title: req.body.title,
date: Date.now(),
body: req.body.body,
image: req.body.image,
comments: []
})
newPost.save(function(err){....)