gpt4 book ai didi

javascript - 将日期格式 27.05.2015 01 :46:32. UTC 转换为区域设置时间

转载 作者:行者123 更新时间:2023-11-27 23:44:30 24 4
gpt4 key购买 nike

谁能帮我将日期格式 27.05.2015 01:46:32.UTC 转换为本地时间。

我试过下面的代码

var date = new Date('27.05.2015 01:46:32.UTC ');
date.toString();

这也行不通。甚至 momentjs 也给出了转换这种日期格式的错误。

最佳答案

根据声明甚至 momentjs 也给出了转换这种日期格式的错误,我已经冒昧地使用了 在这里。

您需要使用 string-format moment 构造函数传递输入字符串所在的字符串和格式。

使用

var t = "27.05.2015 01:46:32.UTC"; 

//pass dateTime string and its format, it will return
//moment object
var cdt = moment.utc(t, 'DD.MM.YYYY HH:mm:ss');

//Get date object
var date = cdt.toDate();

//Use date variable as per requiremnt
alert(date);
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.3/moment.js"></script>

关于javascript - 将日期格式 27.05.2015 01 :46:32. UTC 转换为区域设置时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30523071/

24 4 0
文章推荐: php - 如何在 php 中使用 DOM 解析器为 h1、h2 等创建
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com