带有parent_id的Mongodb架构

时间:2015-04-27 17:59:48

标签: mongodb mongoose

我需要用答案来做消息架构。我正在尝试使用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。 感谢

0 个答案:

没有答案