本文介绍了如何在MongoDB的shell中将NumberLong转换为Date?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我将unix时间戳存储为MongoDB的 NumberLong
类型(毫秒),如何在Mongo shell中转换为人类可读的日期字符串?
I am storing unix timestamp as MongoDB's NumberLong
type (millisecond) , how to convert to human readable date string in the Mongo shell?
推荐答案
NumberLong(123123123123131).toNumber().toString()
这篇关于如何在MongoDB的shell中将NumberLong转换为Date?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!