javascript – 如何在MongoDB的shell中将NumberLong转换为Date?

我将unix时间戳存储为MongoDB的NumberLong类型(毫秒),如何在Mongo
shell中转换为人类可读的日期字符串? 最佳答案 为了我自己的未来参考(并纳入其他答案):

db.mycollection.aggregate([
  {$match:{"userId":"d1792d83-d854-44d5-9jc5-e3e20435958b"}},
  {$project:{newDate:Date("$numberLongDate")}}
])
点赞