我怎样才能像这样 DD.MM.YYYY 一样获得今天的日期和时间以及如何做?在 meteor ?
Template.getdate.helpers({
datelist: function(){
var bugun=date(now);
return Rezervasyon.find({iadetarihi:bugun});
}
});
最佳答案
您可以对今天的日期使用标准的 javascript:
var bugun=new Date();
要格式化它并获得更细粒度的选项,最好使用 momentjs 包:
将此添加到您的 meteor 项目中:
meteor add momentjs:moment
然后,您可以执行此操作而不是上述操作:
var date = new Date()
var begun = moment(date).format("MM.DD.YYYY");
关于datetime - 如何在 Meteor 中获取今天的日期和时间?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31890483/