欢迎光临,了解微信小程序开发,就上易用通!

当前位置 : 易用通 > 小程序模板
宜车帮;格式化时间戳宜车帮;格式化时间戳
立即下载

宜车帮;格式化时间戳

模板分类 : 小程序模板 模板编号 : Y1071 源码文件 : 完全开源 下载权限 : VIP会员
模板大小 :  模板指数 :  更新时间 : 2018-03-26 15:52 模板等级 : ☆☆☆☆☆

模板截图:

宜车帮;格式化时间戳(图1)  代码示例:
[AppleScript] 纯文本查看 复制代码
?
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
 * 格式化时间(时间戳-时间)
 */
function getLocalTime(nS) {
    return new Date(parseInt(nS) * 1000).Format("yyyy-MM-dd hh:mm:ss");
}
 
Date.prototype.Format = function (fmt) {
    var o = {
        "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+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    for (var k in o)
        if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
    return fmt;
}
 
/**
 * 获取当前时间
 */
function getcurrentTime() {
    let date = new Date();
    return date.getFullYear + "-" + date.getMonth() + "-" + date.getDate + " " + date.getHours + ":" + date.getMinutes() + ":" + date.getSeconds();
}
 
 
 /**
  * 对外暴露接口
  */
module.exports.getcurrentTime = getcurrentTime;
exports.getLocalTime = getLocalTime;

加入收藏
立即下载
分享到微信朋友圈
X

免责声明:

1. 本站所有素材(未指定商用),仅限学习交流,请勿用于商业用途。
2. 本站所有小程序模板Demo和图片均来自用户分享上传和网络收集,模板和图片版权归原作者及原出处所有。
3. 未经合法授权,会员不得以任何形式发布、传播、复制、转售该素材。