Answers:
如果使用的是Node.js,则一定要具有EcmaScript 5,因此Date具有toISOString
方法。您需要对ISO8601进行一些修改:
new Date().toISOString()
> '2012-11-04T14:51:06.157Z'
因此,只需删除一些内容,便可以设置:
new Date().toISOString().
replace(/T/, ' '). // replace T with a space
replace(/\..+/, '') // delete the dot and everything after
> '2012-11-04 14:55:45'
或者,一行: new Date().toISOString().replace(/T/, ' ').replace(/\..+/, '')
ISO8601必定是UTC(在第一个结果上也由尾随Z指示),因此默认情况下您会获得UTC(总是一件好事)。
Object has no method 'toISOString'
您会错过new
new Date().toISOString().replace('T', ' ').substr(0, 19)
很正常。
更新2017-03-29:添加了date-fns,有关Moment和Datejs的一些说明
更新2016-09-14:添加了SugarJS,它似乎具有一些出色的日期/时间功能。
好的,因为没有人提供实际答案,这是我的。
图书馆无疑是以标准方式处理日期和时间的最佳选择。在日期/时间计算中有很多边缘情况,因此将开发移交给库很有用。
这是与Node兼容的主要时间格式库的列表:
也有非节点库:
有一个转换库:
npm install dateformat
然后写下您的要求:
var dateFormat = require('dateformat');
然后绑定值:
var day=dateFormat(new Date(), "yyyy-mm-dd h:MM:ss");
result.request_date
啊
我对图书馆一无所知。在这种情况下,除非应用程序过程的其他部分日期过长,否则通用库似乎显得有些过时。
编写诸如此类的小型实用程序函数对于初学者和熟练的程序员而言都是有用的练习,对于我们中的新手来说都是一种学习经验。
function dateFormat (date, fstr, utc) {
utc = utc ? 'getUTC' : 'get';
return fstr.replace (/%[YmdHMS]/g, function (m) {
switch (m) {
case '%Y': return date[utc + 'FullYear'] (); // no leading zeros required
case '%m': m = 1 + date[utc + 'Month'] (); break;
case '%d': m = date[utc + 'Date'] (); break;
case '%H': m = date[utc + 'Hours'] (); break;
case '%M': m = date[utc + 'Minutes'] (); break;
case '%S': m = date[utc + 'Seconds'] (); break;
default: return m.slice (1); // unknown code, remove %
}
// add leading zero if required
return ('0' + m).slice (-2);
});
}
/* dateFormat (new Date (), "%Y-%m-%d %H:%M:%S", true) returns
"2012-05-18 05:37:21" */
易于阅读和可自定义的方式,以所需的格式获取时间戳,而无需使用任何库:
function timestamp(){
function pad(n) {return n<10 ? "0"+n : n}
d=new Date()
dash="-"
colon=":"
return d.getFullYear()+dash+
pad(d.getMonth()+1)+dash+
pad(d.getDate())+" "+
pad(d.getHours())+colon+
pad(d.getMinutes())+colon+
pad(d.getSeconds())
}
(如果您需要UTC格式的时间,则只需更改函数调用即可。例如,“ getMonth”变为“ getUTCMonth”)
javascript库sugar.js(http://sugarjs.com/)具有格式化日期的功能
例:
Date.create().format('{dd}/{MM}/{yyyy} {hh}:{mm}:{ss}.{fff}')
使用Date对象中提供的方法,如下所示:
var ts_hms = new Date();
console.log(
ts_hms.getFullYear() + '-' +
("0" + (ts_hms.getMonth() + 1)).slice(-2) + '-' +
("0" + (ts_hms.getDate())).slice(-2) + ' ' +
("0" + ts_hms.getHours()).slice(-2) + ':' +
("0" + ts_hms.getMinutes()).slice(-2) + ':' +
("0" + ts_hms.getSeconds()).slice(-2));
它看起来确实很脏,但是应该可以与JavaScript核心方法配合使用
我正在使用dateformat在Nodejs和angularjs上,很好
安装
$ npm install dateformat
$ dateformat --help
演示
var dateFormat = require('dateformat');
var now = new Date();
// Basic usage
dateFormat(now, "dddd, mmmm dS, yyyy, h:MM:ss TT");
// Saturday, June 9th, 2007, 5:46:21 PM
// You can use one of several named masks
dateFormat(now, "isoDateTime");
// 2007-06-09T17:46:21
// ...Or add your own
dateFormat.masks.hammerTime = 'HH:MM! "Can\'t touch this!"';
dateFormat(now, "hammerTime");
// 17:46! Can't touch this!
// You can also provide the date as a string
dateFormat("Jun 9 2007", "fullDate");
// Saturday, June 9, 2007
...
new Date(2015,1,3,15,30).toLocaleString()
//=> 2015-02-03 15:30:00
3.2.2015, 15:30:00
替代方案#6233 ....
将UTC偏移量添加到本地时间,然后使用对象的toLocaleDateString()
方法将其转换为所需的格式Date
:
// Using the current date/time
let now_local = new Date();
let now_utc = new Date();
// Adding the UTC offset to create the UTC date/time
now_utc.setMinutes(now_utc.getMinutes() + now_utc.getTimezoneOffset())
// Specify the format you want
let date_format = {};
date_format.year = 'numeric';
date_format.month = 'numeric';
date_format.day = '2-digit';
date_format.hour = 'numeric';
date_format.minute = 'numeric';
date_format.second = 'numeric';
// Printing the date/time in UTC then local format
console.log('Date in UTC: ', now_utc.toLocaleDateString('us-EN', date_format));
console.log('Date in LOC: ', now_local.toLocaleDateString('us-EN', date_format));
我正在创建一个默认为本地时间的日期对象。我要添加UTC偏移量。我正在创建一个日期格式的对象。我以所需的格式显示UTC日期/时间:
使用x-date
模块,它是x类库的子模块之一;
require('x-date') ;
//---
new Date().format('yyyy-mm-dd HH:MM:ss')
//'2016-07-17 18:12:37'
new Date().format('ddd , yyyy-mm-dd HH:MM:ss')
// 'Sun , 2016-07-17 18:12:51'
new Date().format('dddd , yyyy-mm-dd HH:MM:ss')
//'Sunday , 2016-07-17 18:12:58'
new Date().format('dddd ddSS of mmm , yy')
// 'Sunday 17thth +0300f Jul , 16'
new Date().format('dddd ddS mmm , yy')
//'Sunday 17th Jul , 16'
new Date().toString("yyyyMMddHHmmss").
replace(/T/, ' ').
replace(/\..+/, '')
使用.toString(),格式变为
replace(/ T /,'')。//将T替换为''2017-01-15T ...
replace(/..+/,'')//对于... 13:50:16.1271
例如,请参见var date
和hour
:
var date="2017-01-15T13:50:16.1271".toString("yyyyMMddHHmmss").
replace(/T/, ' ').
replace(/\..+/, '');
var auxCopia=date.split(" ");
date=auxCopia[0];
var hour=auxCopia[1];
console.log(date);
console.log(hour);
.toString("yyyyMMddHHmmss")
呢?
对于日期格式,最简单的方法是使用moment lib。https://momentjs.com/
const moment = require('moment')
const current = moment().utc().format('Y-M-D H:M:S')
toISOString()
并且toUTCString()
我需要一个简单的格式库,而没有任何语言环境的支持。所以我修改了
http://www.mattkruse.com/javascript/date/date.js
并使用它。参见https://github.com/adgang/atom-time/blob/master/lib/dateformat.js
该文档非常清楚。
appHelper.validateDates = function (start, end) {
var returnval = false;
var fd = new Date(start);
var fdms = fd.getTime();
var ed = new Date(end);
var edms = ed.getTime();
var cd = new Date();
var cdms = cd.getTime();
if (fdms >= edms) {
returnval = false;
console.log("step 1");
}
else if (cdms >= edms) {
returnval = false;
console.log("step 2");
}
else {
returnval = true;
console.log("step 3");
}
console.log("vall", returnval)
return returnval;
}
我认为这实际上回答了您的问题。
在javascript中使用日期/时间太烦人了。经过几根白发,我发现这实际上很简单。
var date = new Date();
var year = date.getUTCFullYear();
var month = date.getUTCMonth();
var day = date.getUTCDate();
var hours = date.getUTCHours();
var min = date.getUTCMinutes();
var sec = date.getUTCSeconds();
var ampm = hours >= 12 ? 'pm' : 'am';
hours = ((hours + 11) % 12 + 1);//for 12 hour format
var str = month + "/" + day + "/" + year + " " + hours + ":" + min + ":" + sec + " " + ampm;
var now_utc = Date.UTC(str);