gpt4 book ai didi

node.js - 查找用户在 mongoDB 中花费的总时间

转载 作者:可可西里 更新时间:2023-11-01 10:08:52 24 4
gpt4 key购买 nike

我有一个结构如下的 mongodb:

|User |Location  |TimeOfVisit
|U1. |Cafeteria.|ISODate("2018-12-27T09:09:08.688Z")
|U2. |Reception.|ISODate("2018-12-27T09:12:45.688Z")
|U1. |Cafeteria.|ISODate("2018-12-27T09:45:38.688Z")
|U1. |Cafeteria.|ISODate("2018-12-27T09:47:38.688Z")

我需要找出用户在任何特定位置花费的总时间。我已经阅读了多个博客,但尚未找到任何具体答案。我有以下内容:

aggregate([
{
"$match": {
"User": {
"$eq": req.query.User
}
}
},
{
"$group": {
"_id": "$location",
"totalMiniutes": {
<<Get the time>>
}
}
}

最佳答案

您可以从 TimeOfVisit 字段中找到 timeOfDay,然后使用 $sum得到总数

db.collection.aggregate([
{ "$match": { "User": req.query.User }},
{ "$addFields": {
"timeOfDay": {
"$mod": [
{ "$toLong": "$TimeOfVisit" },
1000*60*60*24
]
}
}},
{ "$group": {
"_id": "$location",
"totalTimeInMilliseconds": { "$sum": "$timeOfDay" }
}}
])

Output

[
{
"_id": "Reception",
"totalTimeInMilliseconds": 33165688
},
{
"_id": "Cafeteria",
"totalTimeInMilliseconds": 98846064
}
]

您可以进一步划分它以获得天、小时、分钟或秒

1 小时 = 60 分钟 = 60 × 60 秒 = 3600 秒 = 3600 × 1000 毫秒 = 3,600,000 毫秒。

db.collection.aggregate([
{ "$addFields": {
"timeOfDay": {
"$mod": [
{ "$subtract": [ "$TimeOfVisit", Date(0) ] },
1000 * 60 * 60 * 24
]
}
}},
{ "$group": {
"_id": "$location",
"totalTimeInMiniutes": {
"$sum": { "$divide": ["$timeOfDay", 60 × 1000] }
}
}}
])

对于 mongodb 4.0 及以上

db.collection.aggregate([
{ "$addFields": {
"timeOfDay": {
"$mod": [
{ "$toLong": "$TimeOfVisit" },
1000 * 60 * 60 * 24
]
}
}},
{ "$group": {
"_id": "$location",
"totalTimeInMiniutes": {
"$sum": { "$divide": ["$timeOfDay", 60 × 1000] }
}
}}
])

关于node.js - 查找用户在 mongoDB 中花费的总时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53954793/

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