如何将此时间戳转换1382086394000
为2013-10-18 08:53:14
在javascript中使用函数?目前,我具有此功能:
function cleanDate(d) {return new Date(+d.replace(/\/Date\((\d+)\)\//, '$1'));}
如何将此时间戳转换1382086394000
为2013-10-18 08:53:14
在javascript中使用函数?目前,我具有此功能:
function cleanDate(d) {return new Date(+d.replace(/\/Date\((\d+)\)\//, '$1'));}
Answers:
价值 1382086394000可能是一个时间值,它是自1970-01-01T00:00:00Z以来的毫秒数。您可以使用它使用Date构造函数创建ECMAScript Date对象:
var d = new Date(1382086394000);
如何将其转换为可读性取决于您。只需将其发送到输出,就应该调用内部(且完全依赖于实现)的 toString方法*,该方法通常以人类可读的形式打印等效的系统时间。
Fri Oct 18 2013 18:53:14 GMT+1000 (EST)
在ES5中,还有一些其他内置的格式设置选项:
等等。请注意,大多数都依赖于实现,并且在不同的浏览器中会有所不同。如果要在所有浏览器中使用相同的格式,则需要自行设置日期格式,例如:
alert(d.getDate() + '/' + (d.getMonth()+1) + '/' + d.getFullYear());
* Date.prototype.toString的格式已在ECMAScript 2018中标准化。在所有实现中普及之前可能还需要一段时间,但是至少现在更常见的浏览器支持它。
这很好。在chrome
浏览器中签入:
var theDate = new Date(timeStamp_value * 1000);
dateString = theDate.toGMTString();
alert(dateString );
1000
。否则,您将进入未来的空间!
以下是解决每种日期格式混乱的简单方法:
当前日期:
var current_date=new Date();
获取当前日期的时间戳:
var timestamp=new Date().getTime();
将特定的日期转换为时间戳:
var timestamp_formation=new Date('mm/dd/yyyy').getTime();
将时间戳转换为日期:
var timestamp=new Date('02/10/2016').getTime();
var todate=new Date(timestamp).getDate();
var tomonth=new Date(timestamp).getMonth()+1;
var toyear=new Date(timestamp).getFullYear();
var original_date=tomonth+'/'+todate+'/'+toyear;
OUTPUT:
02/10/2016
我们需要使用JavaScript创建新函数。
function unixTime(unixtime) {
var u = new Date(unixtime*1000);
return u.getUTCFullYear() +
'-' + ('0' + u.getUTCMonth()).slice(-2) +
'-' + ('0' + u.getUTCDate()).slice(-2) +
' ' + ('0' + u.getUTCHours()).slice(-2) +
':' + ('0' + u.getUTCMinutes()).slice(-2) +
':' + ('0' + u.getUTCSeconds()).slice(-2) +
'.' + (u.getUTCMilliseconds() / 1000).toFixed(3).slice(2, 5)
};
console.log(unixTime(1370001284))
2016-04-30 08:36:26.000
formatDate
是可以调用它并传递要格式化的日期的函数 dd/mm/yyyy
var unformatedDate = new Date("2017-08-10 18:30:00");
$("#hello").append(formatDate(unformatedDate));
function formatDate(nowDate) {
return nowDate.getDate() +"/"+ (nowDate.getMonth() + 1) + '/'+ nowDate.getFullYear();
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="hello">
</div>
这就是我为instagram API做的事情。将日期乘以1000转换为带日期方法的时间戳,然后分别添加所有实体(如(年,月等)
创建了自定义月份列表名称,并使用了getMonth()
返回月份索引的方法进行了映射。
convertStampDate(unixtimestamp){
// Unixtimestamp
// Months array
var months_arr = ['January','February','March','April','May','June','July','August','September','October','November','December'];
// Convert timestamp to milliseconds
var date = new Date(unixtimestamp*1000);
// Year
var year = date.getFullYear();
// Month
var month = months_arr[date.getMonth()];
// Day
var day = date.getDate();
// Hours
var hours = date.getHours();
// Minutes
var minutes = "0" + date.getMinutes();
// Seconds
var seconds = "0" + date.getSeconds();
// Display date time in MM-dd-yyyy h:m:s format
var fulldate = month+' '+day+'-'+year+' '+hours + ':' + minutes.substr(-2) + ':' + seconds.substr(-2);
// filtered fate
var convdataTime = month+' '+day;
return convdataTime;
}
带图章参数调用
convertStampDate('1382086394000')
就是这样。
我的ES6变体产生这样的字符串2020-04-05_16:39:45.85725
。随意修改return语句以获取所需的格式:
const getDateStringServ = timestamp => {
const plus0 = num => `0${num.toString()}`.slice(-2)
const d = new Date(timestamp)
const year = d.getFullYear()
const monthTmp = d.getMonth() + 1
const month = plus0(monthTmp)
const date = plus0(d.getDate())
const hour = plus0(d.getHours())
const minute = plus0(d.getMinutes())
const second = plus0(d.getSeconds())
const rest = timestamp.toString().slice(-5)
return `${year}-${month}-${date}_${hour}:${minute}:${second}.${rest}`
}