gpt4 book ai didi

mongodb - 在填充中排序不起作用( Mongoose )

转载 作者:行者123 更新时间:2023-12-02 04:06:20 25 4
gpt4 key购买 nike

我的MongoDB版本是3.2,mongoose版本是4.6.0

这些是我的模式:

// chat
const chatSchema = new mongoose.Schema({
users: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User', required: true }],
lastMessage: { type: mongoose.Schema.Types.ObjectId, ref: 'Message' }
});
export const ChatModel = mongoose.model('Chat', chatSchema);

// message
const messageSchema = new mongoose.Schema({
user: { type: mongoose.Schema.Types.ObjectId, ref: 'User', required: true },
chat: { type: mongoose.Schema.Types.ObjectId, ref: 'Chat', required: true },
text: { type: String, required: true },
timestamp: { type: Date, default: Date.now }
});
export const MessageModel = mongoose.model('Message', messageSchema);

我想按 desc 顺序根据 lastMessage 的时间戳进行排序。这三个我都试过了

ChatModel
.find({}, 'lastMessage')
.populate('lastMessage', 'timestamp', null, { sort: { timestamp: -1 }})
.exec()
.then(chats => console.log(chats))

ChatModel
.find({}, 'lastMessage')
.populate({
path: 'lastMessage',
select: 'timestamp',
options: { sort: { timestamp: -1 }}
})
.exec()
.then(chats => console.log(chats))

ChatModel
.find({}, 'lastMessage')
.populate('lastMessage', 'timestamp')
.sort({ 'lastMessage.timestamp': -1 })
.exec()
.then(chats => console.log(chats))

此外,无论我使用-1还是1'desc',还是'asc'对于 timestamp,它总是给我相同的结果:

  [{
_id: 57c8a682cde8baf5c36eb1fc,
lastMessage: {
_id: 57c8baa29a293eace7f9be15,
timestamp: 2016-09-01T23:32:50.344Z
}
}, {
_id: 57c8a6d0cde8baf5c36eb1fe,
lastMessage: {
_id: 57c8fabb4362b3c25d828774,
timestamp: 2016-09-02T04:06:19.421Z
}
}]

这可能是什么原因造成的?谢谢


更新 1:

这似乎是 Mongoose 的一个错误。

请追踪this issue on GitHub .


更新 2:说不支持。但我不知道为什么...在这种情况下,在 populate 中使用 sort 是错误的吗?

最佳答案

文档 ( http://mongoosejs.com/docs/api.html#document_Document-populate ) 声明如下:

Chat.find().populate({
path: 'lastMessage'
, select: 'timestamp'
, options: { sort: { timestamp: -1 }}
}).exec(function (err, chats) {
//do something
})

如果这不起作用,首先检查它,例如文本,看看它是否是日期时间排序问题

更新:当我重新阅读你的问题时,我注意到了这个问题,你想根据最后一条消息的时间戳对所有消息进行排序。不需要对总体进行排序,因为它只返回 1 个项目(没有最后一条消息的数组)。

所以语法是:

Chat.find().populate({
path: 'lastMessage'
, select: 'timestamp'})
.sort('lastMessage.timestamp')
.exec(function (err, chats) {
//do something
})

关于mongodb - 在填充中排序不起作用( Mongoose ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39285102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com