在angularjs中将本地时间转换为UTC时间

时间:2015-08-03 02:29:30

标签: angularjs ionic

我正在使用var

date= new Date();

在我的控制器中获取当前当地时间。 我得到这样的输出 -

var date=Mon Aug 03 2015 07:56:55 GMT +0530(India Standard Time)

但我需要UTC时间。 如何在 angularjs 中获取UTC时间或将本地时间转换为 UTC 时间。

3 个答案:

答案 0 :(得分:0)

使用date.toISOString()

希望这有帮助。

答案 1 :(得分:0)

var date=new Date();    //will give local time
var date1=date..toUTCString();      //will give 

答案 2 :(得分:0)

使用moment.js,您可以轻松地将本地日期转换为UTC日期。

<强>语法

moment.utc(Date); 

Moment DOCS