此刻,我有时间(对象):
console.log(getSmtpDetails())
现在是 2018年9月22日。
当我在对象上调用const data = [ {
//here you have your smtp details
id: 1
}, {
//here you have your smtp details
id: 2
}, {
//here you have your smtp details
id: 3
}, {
//here you have your smtp details
id: 4
}
]
function getSmtpDetails(){
return data[Math.floor(Math.random() * data.length)];
}
console.log(getSmtpDetails())
时,我得到Moment {_isAMomentObject: true, _isUTC: false, _pf: {…}, _locale: Locale, _d: Sat Sep 22 2018 00:00:00 GMT+0200 (Středoevropský letní čas), …}
的时间是2018年9月21日。为什么?哪里有问题?
答案 0 :(得分:0)
我认为这是时区问题。片刻正在考虑时区并可能更改日期。
时间戳1537567200表示:
尝试以下方法,它应该可以正常工作。
moment.utc().format();