日期格式转时间戳

日期格式转时间戳

timeTurnTimeStamp(string) {
	var f = string.split(' ', 2);
	var d = (f[0] ? f[0] : '').split('-', 3);
	var t = (f[1] ? f[1] : '').split(':', 3);
	return (new Date(
		parseInt(d[0], 10) || null,
		(parseInt(d[1], 10) || 1) - 1,
		parseInt(d[2], 10) || null,
		parseInt(t[0], 10) || null,
		parseInt(t[1], 10) || null,
		parseInt(t[2], 10) || null
	)).getTime() / 1000;
}

使用

this.timeTurnTimeStamp('2022-08-14') // 1660406400

this.timeTurnTimeStamp('2022-08-14 02:46:26') // 1660416386

你可能感兴趣的:(uniapp,javascript,日期格式转时间戳)