1.Date对象转换为时间戳 Date date = new Date(); long times = date.getTime(); System.out.println(times); 效果如下: 1508824283292 2.时间戳转换为Date日期对象 long times = System.currentTimeMillis(); Date date = new Date(times); System.out.println(date); 效果如下: Tue Oct 24 13:
<!doctype html> <html> <head> <title>Unix时间戳转换成日期格式</title> <script> var a = FormatDateTime("/Date(1497232433000)/") var b = FormatDateTime("1497232740000") console.log(a); //2017-06-12 09:53:53 cons
将时间戳转换成日期格式:// 简单的一句代码var date = new Date(时间戳); //获取一个时间对象 注意:如果是uinx时间戳记得乘于1000.比如php函数time()获得的时间戳就要乘于1000 /*----------下面是获取时间日期的方法,需要什么样的格式自己拼接起来就好了----------*/date.getFullYear();//获取完整的年份(4位,1970)date.getMonth();//获取月份(0-11,0代表1月,用的时候记得加上1)date.g
1,官网提供的mongodb遍历脚本: 官方文档地址:https://docs.mongodb.org/manual/tutorial/remove-documents/ >var arr = ["ab","cd","ef"] >var show = function(value,index,ar){ print(value) } >arr.forEach(show) ab cd ef 2.mongodb的模糊查询 mongod