本文介绍了如何转换“时间”从Meetup API到可识别的格式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下是Meetup API对时间的定义:

Here's the Meetup API's definition of time:

这是类型我看到的值在JSON中返回:

Here's the type of value I see returned in the JSON:

"time": 1382742000000,

有关如何将其转换为可识别的东西的任何建议吗?

Any advice about how to convert it into something recognizable?

推荐答案

你可以像这样构建一个日期对象

You can construct a date object like this

var date = new Date(milliseconds);

然后你可以使用属性

And then you could apply any format you want using Date properties

这篇关于如何转换“时间”从Meetup API到可识别的格式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 18:15