使用 Javascript FQL 转换创建时间 Facebook
我正在使用 Facebook FQL 来获取照片及其创建时间。问题是我将创建时间作为一些长整数值,例如 1306776492。
现在我无法使用 javascript 将其转换为正确的日期时间。
谁能指出我正确的方向
I am using Facebook FQL to get photos and the time when they were created. The problem is am getting the created time as some long integer value e.g. 1306776492.
Now I am unable to convert it to proper date time using javascript.
Can anyone point me in the right direction
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
setTime
方法设置 Date 对象时间。回报
http://jsfiddle.net/niklasvh/ANRcm/
如果您希望日期为以不同的格式打印,只需查看
Date()
可用的其他方法即可You can set a Date objects time with the
setTime
method.returns
http://jsfiddle.net/niklasvh/ANRcm/
If you want the date to be printed in a different format, just have a look at the other methods available for
Date()