Thinger.IO响应时间戳记(1486047553711)字符串为日期时间

时间:2018-08-22 13:26:41

标签: javascript c# c

我正在为我的项目使用something.io。

我通过使用以下URL发送请求以获取thinger.IO及其详细信息中的注册设备

http://{myip}/v1/users/username/devices?authorization={mytoken}

我得到以下答复

[
 {
  "device":"nodemcu",
  "description":"NodeMCU With ESP8266",
  "connection":{
  "active":true,
  "ts":1486047553711
 }
}
]

我想通过使用Javascript或其他任何方式将ts“ 1486047553711”转换为正确的日期时间。

我是thinger.io的初学者。我越来越难以理解他们的文件了。

任何帮助。

2 个答案:

答案 0 :(得分:0)

数字1486047553711是日期,它是自1970年1月1日UTC 00:00:00以来的毫秒数。您可以通过将其传递给构造函数来将其转换为javascript日期。

例如

new Date(1486047553711);

答案 1 :(得分:0)

You can convert it to proper date format by passing it to date constructor: new Date(1486047553711); the response is : Thu Feb 02 2017 20:29:13 GMT+0530 (India Standard Time)