说我得到了这么多代码:
Room.findOneAndUpdate({ Roomid: roomid }, { $push: { UsersMeta: UserMeta}}, { new: false }, function (err, room) {
if (err) console.log(err);
console.log('room output:');
console.log(room);
client.emit('others', room);
})
在db中搜索一个文档,对其进行更新,然后将处于预更新状态的此room
doc发送回客户端。我需要的是对响应room
进行一些更改,特别是删除那些_id,__ v,以及可能的任何其他自定义文档部分。
我想做的事情:
在创建架构时使用toObject.transform
var RoomSchema = mongoose.Schema({
Roomid: { type: String, unique: true },
///stuff///
});
RoomSchema.options.toObject.transform = function (doc, ret, options) {
// remove the _id of every document before returning the result
delete ret._id;
}
失败:收到cannot set property 'transform' of undefined
错误。
将上述代码块更改为:
Room.find({ Roomid: roomid })
.update({ $push: { UsersMeta: UserMeta} })
.select({ _id: 0 })
.exec(function (err, room) {
if (err) console.log(err);
console.log('room output:');
console.log(room);
client.emit('others', room);
})
失败:始终在room
输出中接收[]。
现在我停止在Schema声明上手动设置{_id: false}
,首先完全摆脱_id
。因为我想使用自定义随机ID的房间,似乎我不需要那些_id
。但我不确定,这样的治疗不会造成一些不愉快的后果
此外,可能需要保留一些非_id
doc属性的问题 - 对我来说是一个未解之谜。
感谢您的关注。
答案 0 :(得分:1)
您可以执行以下操作,它应该可以正常工作;
RoomSchema.set('toJSON', {
transform: function (doc, ret, options) {
delete ret._id;
delete ret.__v;
}
});