time归档值转换为日期

time归档值转换为日期

本文介绍了如何将Instagram媒体对象中的created_time归档值转换为日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用instagram API.我的要求是如何从像"created_time": "1279340983"?这样的媒体对象居所转换或解析日期?

I am wokring with instagram api. My requirement is how to convert or parse date from media object respose like "created_time": "1279340983"? any idea?

推荐答案

收到来自Instagram API的响应后,请执行以下操作:

Once you have the response from the Instagram API, do this:

var t = response.created_time;
var date = new Date(t);
console.log(date);

如果时间戳为1279340983,则:

If the time stamp is 1279340983, then:

var date = new Date(1279340983);

会将戳记转换为计算机本地时区中的日期/时间.

will convert the stamp to a date/time in your computer's local time zone.

这篇关于如何将Instagram媒体对象中的created_time归档值转换为日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 21:00