我正在寻找日期输出,例如:"2019-05-29T06:33:33.537+05:30"
-其中包括gmt值。我试图通过使用以下方法获得相同的结果:
var newFormat = new Date();
console.log(newFormat.toISOString());
但是获取值为:2019-06-16T03:00:27.989Z
-找不到添加的GMT值。获得所需值的正确方法是什么?
谢谢。
答案 0 :(得分:0)
您可以使用toString()
:
var newFormat = new Date();
console.log(newFormat.toString());
toString
为您提供 2019年1月23日星期三17:23:42 GMT + 0800(新加坡toDateString
为您提供 2019年1月23日星期三。 toLocaleString
为您提供 2019年1月23日,17:23:42。 toLocaleDateString
为您提供 2019年1月23日。 toGMTString
为您提供 星期三,格林尼治标准时间2019年1月23日09:23:42。 toUTCString
为您提供 周三,23 Jan 2019 09:23:42 GMT。 toISOString
为您提供 2019-01-23T09:23:42.079Z。