在微信小程序开发时发现一个timestamp的时间戳的变量 比如获取微信运动步数时候

timestamp是如何形成的在JS中 是这么形成的

var timestamp = Date.parse(new Date());
timestamp = timestamp / 1000;
//当前时间戳为:1505355301
console.log("当前时间戳为:" + timestamp);

那么如果获取到timestamp如何转化为时间呢 可以这么转化

var timestamp3 = 1403058804;
var newDate = new Date();
newDate.setTime(timestamp3 * 1000);
// Wed Jun 18 2014
console.log(newDate.toDateString());
// Wed, 18 Jun 2014 02:33:24 GMT
console.log(newDate.toGMTString());
// 2014-06-18T02:33:24.000Z
console.log(newDate.toISOString());
// 2014-06-18T02:33:24.000Z
console.log(newDate.toJSON());
// 2014年6月18日
console.log(newDate.toLocaleDateString());
// 2014年6月18日 上午10:33:24
console.log(newDate.toLocaleString());
// 上午10:33:24
console.log(newDate.toLocaleTimeString());
// Wed Jun 18 2014 10:33:24 GMT+0800 (中国标准时间)
console.log(newDate.toString());
// 10:33:24 GMT+0800 (中国标准时间)
console.log(newDate.toTimeString());
// Wed, 18 Jun 2014 02:33:24 GMT
console.log(newDate.toUTCString());

也可以封装一个函数

Date.prototype.format = function(format) {
var date = {
"M+": this.getMonth() + 1,
"d+": this.getDate(),
"h+": this.getHours(),
"m+": this.getMinutes(),
"s+": this.getSeconds(),
"q+": Math.floor((this.getMonth() + 3) / 3),
"S+": this.getMilliseconds()
};
if (/(y+)/i.test(format)) {
format = format.replace(RegExp.$1, (this.getFullYear() + '').substr(4 - RegExp.$1.length));
}
for (var k in date) {
if (new RegExp("(" + k + ")").test(format)) {
format = format.replace(RegExp.$1, RegExp.$1.length == 1
? date[k] : ("00" + date[k]).substr(("" + date[k]).length));
}
}
return format;
} function TimeStampConvertTime(timeStamp)
{
var timestamp3 = timeStamp;
var newDate = new Date();
newDate.setTime(timestamp3 * 1000);
return newDate.format('yyyy-MM-dd h:m:s');
}

调用:

最新文章

  1. [poj2349]Arctic Network(最小生成树+贪心)
  2. 你真的了解UIView吗?
  3. NSTimer内存泄漏导致控制器不调用dealloc
  4. kail2 linux 安装vmware tools
  5. Js 的常用方法:页面跳转,Session,类继承
  6. c#基础语言编程-文件流操作
  7. 关于js中alert弹出窗口换行!
  8. 一道面试题与Java位操作 和 BitSet 库的使用
  9. Gartner公布了集成系统的魔力象限 - Nutanix的关键技术是什么?
  10. QT进度条QProgressBar的练习
  11. 安装virtualbox出现2503、2502的错误提示解决方法
  12. 【shiro】(2)---基于RUL的权限管理
  13. vue安装调试器Vue.js devtools
  14. NAT和Proxy的区别
  15. Express app.listen 函数了解
  16. Linux下编译C++程序遇到错误:undefined reference to `*::*
  17. ISIS与OSPF的区别与联系
  18. [六省联考2017]分手是祝愿 期望DP
  19. JS对象序列化为JSON对象的方法
  20. Html背景图

热门文章

  1. Python函数篇:装饰器
  2. 记一次list循环删除元素的突发事件!
  3. Fis3迁移至Webpack实战
  4. mysql数据库第一弹
  5. Linux笔记(固定USB摄像头硬件端口,绑定前后置摄像头)
  6. spring各个版本开发包下载
  7. jq实现全选或者全不选
  8. android sdk manager 国内镜像
  9. C语言之赋值
  10. 【设计模式系列】之OO面向对象设计七大原则