如何使用 Moment.js 从日期中删除时间?

2022-08-29 23:46:45
formatCalendarDate = function (dateTime) {
    return moment.utc(dateTime).format('LLL');
};

它显示: “28 二月 2013 09:24”

但我想删除最后的时间。我该怎么做?

我正在使用Moment.js


答案 1

很抱歉这么晚才跳进来,但是如果你想删除的时间部分而不是格式化它,那么代码是:moment()

.startOf('day')

编号: http://momentjs.com/docs/#/manipulating/start-of/


答案 2

format('LL')

根据你试图用它做什么,可以做到这一点。它会产生类似如下的结果:format('LL')

Moment().format('LL'); // => April 29, 2016