我尝试使用条件过滤一些结果,如果数据不存在或存在并且比...更早
我使用PHP查询构建器进行查询构建
->addOr(
['interactions.lastDisplays' => ['$elemMatch' => [
'user' => new \MongoId($id),
'date' => ['$lte' => $date]
]]],
['interactions.lastDisplays.user' => ['$ne' => new \MongoId($id)]]
)
并记录到:
db.Post.find({
"$or": [
{ "interactions.lastDisplays": {
"$elemMatch": { "user": ObjectId("5a61bb816e0bb1542a0bc574"),
"date": { "$lte": new ISODate("2019-06-14T13:22:01+00:00") } } } },
{ "interactions.lastDisplays.user": {
"$ne": ObjectId("5a61bb816e0bb1542a0bc574") }
}]
}).limit(25).skip(0);
由于某种原因,它不会在PHP中返回任何结果。当我复制它并直接在数据库上运行时,它工作正常,并返回所有25个结果。
答案 0 :(得分:0)
解决方案就像将$lte
更改为MongoDate一样简单。
->addOr(
['interactions.lastDisplays' => ['$elemMatch' => [
'user' => new \MongoId($id),
'date' => ['$lte' => $new \MongoDate($date->getTimestamp())]
]]],
['interactions.lastDisplays.user' => ['$ne' => new \MongoId($id)]]
)
我不理解的奇怪的事情是它曾经在其他查询中使用DateTime
(但它们没有嵌套数组条件,所以可能是问题)。而且查询日志也是一样的。