我需要用答案来做消息架构。我正在尝试使用parent_id,但它不起作用。
var messageSchema = new Schema({
_id : {type : String},
sender : { type : String},
reciver : {type : String},
text : {type : String},
answer:[{
parent_id : _id,
texto :{type:String}
}]
});
当我使用答案做帖子时总是创建一个需要随机ID而不是_id。 感谢