我将unix时间戳存储为MongoDB的NumberLong类型(毫秒),如何在Mongo shell中转换为人类可读的日期字符串? 最佳答案 供我自己将来引用(并结合其他答案):db.mycollection.aggregate([ {$match:{"userId":"d1792d83-d854-44d5-9jc5-e3e20435958b"}}, {$project:{newDate:Date("$numberLongDate")}} ])