我正在尝试转换日期&时间戳到IST使用Moment。我试过跟随
moment(1369266934311).utcOffset("+05:30").format()
我的输出为2017-12-05T00:00:00+05:30
。
但我要求的格式为Tue Dec 05 2017 00:00:00 GMT+0530 (India Standard Time)
。
答案 0 :(得分:0)
从当前对象获取日期对象并调用其.toString()
方法。
moment(1369266934311).utcOffset("+05:30").toDate().toString();
// => "Thu May 23 2013 05:25:34 GMT+0530 (IST)"
顺便说一句,1369266934311与你在问题中提到的日期不同。