美文网首页
微信小程序在云函数中 获取中国区当前时间

微信小程序在云函数中 获取中国区当前时间

作者: 残月星辰梦 | 来源:发表于2020-09-23 00:03 被阅读0次

    调用:

    const currentTime=processDate(new Date());
    

    函数:

      function processDate(date) {
        date = date.toLocaleString("zh-cn", {timeZone: "Asia/Shanghai"});
        date = new Date(date);
        var y = date.getFullYear();
        var m = date.getMonth() + 1;
        m = m < 10 ? ('0' + m) : m;
        var d = date.getDate();
        d = d < 10 ? ('0' + d) : d;
        var h = date.getHours();
        h=h < 10 ? ('0' + h) : h;
        var minute = date.getMinutes();
        minute = minute < 10 ? ('0' + minute) : minute;
        var second= date.getSeconds();
        second=second < 10 ? ('0' + second) : second;
        return y + '-' + m + '-' + d+' '+h+':'+minute+':'+second;
      };
    

    相关文章

      网友评论

          本文标题:微信小程序在云函数中 获取中国区当前时间

          本文链接:https://www.haomeiwen.com/subject/mvfnyktx.html