我正在使用var
date= new Date();
在我的控制器中获取当前当地时间。 我得到这样的输出 -
var date=Mon Aug 03 2015 07:56:55 GMT +0530(India Standard Time)
但我需要UTC时间。 如何在 angularjs 中获取UTC时间或将本地时间转换为 UTC 时间。
答案 0 :(得分:0)
使用date.toISOString()
希望这有帮助。
答案 1 :(得分:0)
var date=new Date(); //will give local time
var date1=date..toUTCString(); //will give
答案 2 :(得分:0)