其他分享
首页 > 其他分享> > 将国际标准时间和时间戳转换成年月日时分秒

将国际标准时间和时间戳转换成年月日时分秒

作者:互联网

//  _this.lotteryTime  这是你要传入的  国际标准时间 或者时间戳
var d = new Date(_this.lotteryTime);
      _this.saveModel.lotteryTime =
        d.getFullYear() +
        "-" +
        (d.getMonth() + 1) +
        "-" +
        d.getDate() +
        " " +
        d.getHours() +
        ":" +
        d.getMinutes() +
        ":" +
        d.getSeconds();

标签:getSeconds,getFullYear,getMinutes,lotteryTime,国际标准,时间,年月日,时分秒
来源: https://blog.csdn.net/weixin_44606457/article/details/100584586