我想使用Moment.js(EST)创建开始和结束时间戳:
我使用了moment.js并像这样创建了
var time = new Date();
var startTime=Date.parse(moment(time).startOf('day').tz('America/New_York').format("MM/DD/YYYY HH:mm:ss"));
var endTime=Date.parse(moment(time).tz('America/New_York').format("MM/DD/YYYY HH:mm:ss"));
它以毫秒为单位给出时间。
是正确还是错误?
我没有从db获取数据,因为时间戳不匹配。
答案 0 :(得分:5)
首先,当你使用momentjs时,明确地使用Date
停止:
var moment = require('moment-timezone');
// moment() without parameter means the current time
// toDate() converts the moment object to a javascript Date
var startTime = moment().tz('America/New_York').startOf('day').toDate();
var endTime = moment().tz('America/New_York').toDate();
// startTime and endTime are Date objects
console.log(startTime);
console.log(endTime);