329
formatCalendarDate = function (dateTime) {
    return moment.utc(dateTime).format('LLL');
};

它显示:“2013 年 2 月 28 日 09:24”

但我想在最后删除时间。我怎样才能做到这一点?

我正在使用Moment.js

4

14 回答 14

721

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

.startOf('day')

参考: http: //momentjs.com/docs/#/manipulating/start-of/

于 2013-10-31T06:03:06.873 回答
61

采用format('LL')

取决于你试图用它做什么,format('LL')可以做到这一点。它产生这样的东西:

Moment().format('LL'); // => April 29, 2016
于 2016-04-30T00:52:52.027 回答
40

正确的方法是根据您的要求指定输入,这将为您提供更大的灵活性。

本定义包括以下内容

LTS : 'h:mm:ss A', LT : 'h:mm A', L : 'MM/DD/YYYY', LL : 'MMMM D, YYYY', LLL : 'MMMM D, YYYY h:mm A', LLLL : 'dddd, MMMM D, YYYY h:mm A'

您可以使用其中任何一种或更改传递给 moment().format() 的输入。例如,对于您的情况,您可以通过moment.utc(dateTime).format('MMMM D, YYYY').

于 2017-03-01T17:07:17.680 回答
21

好的,所以我知道我参加派对要迟到了。就像晚了 6 年,但这是我需要弄清楚并将其格式化为 YYYY-MM-DD 的东西。

moment().format(moment.HTML5_FMT.DATE); // 2019-11-08

您还可以传入一个参数,如2019-11-08T17:44:56.144.

moment("2019-11-08T17:44:56.144").format(moment.HTML5_FMT.DATE); // 2019-11-08

https://momentjs.com/docs/#/parsing/special-formats/

于 2019-11-09T02:01:44.710 回答
11

您也可以使用这种格式:

moment().format('ddd, ll'); // Wed, Jan 4, 2017

于 2017-01-04T07:54:26.647 回答
10
formatCalendarDate = function (dateTime) {
    return moment.utc(dateTime).format('LL')
}
于 2013-02-28T08:31:22.207 回答
7

使用较新版本的 moment.js,您还可以这样做:

var dateTime = moment();

var dateValue = moment({
    year: dateTime.year(),
    month: dateTime.month(),
    day: dateTime.date()
});

请参阅: http: //momentjs.com/docs/#/parsing/object/

于 2015-09-10T16:52:26.257 回答
7

看看这些例子。

格式化日期

moment().format('MMMM Do YYYY, h:mm:ss a'); // December 7th 2020, 9:58:18 am
moment().format('dddd');                    // Monday
moment().format("MMM Do YY");               // Dec 7th 20
moment().format('YYYY [escaped] YYYY');     // 2020 escaped 2020
moment().format();                          // 2020-12-07T09:58:18+05:30

相对时间

moment("20111031", "YYYYMMDD").fromNow(); // 9 years ago
moment("20120620", "YYYYMMDD").fromNow(); // 8 years ago
moment().startOf('day').fromNow();        // 10 hours ago
moment().endOf('day').fromNow();          // in 14 hours
moment().startOf('hour').fromNow();       // an hour ago

日历时间

moment().subtract(10, 'days').calendar(); // 11/27/2020
moment().subtract(6, 'days').calendar();  // Last Tuesday at 9:58 AM
moment().subtract(3, 'days').calendar();  // Last Friday at 9:58 AM
moment().subtract(1, 'days').calendar();  // Yesterday at 9:58 AM
moment().calendar();                      // Today at 9:58 AM
moment().add(1, 'days').calendar();       // Tomorrow at 9:58 AM
moment().add(3, 'days').calendar();       // Thursday at 9:58 AM
moment().add(10, 'days').calendar();      // 12/17/2020

多语言环境支持

moment.locale();         // en
moment().format('LT');   // 9:58 AM
moment().format('LTS');  // 9:58:18 AM
moment().format('L');    // 12/07/2020
moment().format('l');    // 12/7/2020
moment().format('LL');   // December 7, 2020
moment().format('ll');   // Dec 7, 2020
moment().format('LLL');  // December 7, 2020 9:58 AM
moment().format('lll');  // Dec 7, 2020 9:58 AM
moment().format('LLLL'); // Monday, December 7, 2020 9:58 AM
moment().format('llll'); // Mon, Dec 7, 2020 9:58 AM
于 2020-12-07T04:29:58.247 回答
6

每当我使用该moment.js库时,我都会以这种方式指定所需的格式:

moment(<your Date goes here>).format("DD-MMM-YYYY")

或者

moment(<your Date goes here>).format("DD/MMM/YYYY")

...等我希望你明白

在 format 函数中,放置所需的格式。上面的示例将删除日期中所有不需要的元素,例如分钟和秒

于 2017-10-16T09:42:15.320 回答
5

对于像我这样想要长日期格式(LLLL)但没有一天中的时间的人,有一个 GitHub 问题:https ://github.com/moment/moment/issues/2505 。目前,有一个解决方法:

var localeData = moment.localeData( moment.locale() ),
    llll = localeData.longDateFormat( 'llll' ),
    lll = localeData.longDateFormat( 'lll' ),
    ll = localeData.longDateFormat( 'll' ),
    longDateFormat = llll.replace( lll.replace( ll, '' ), '' );
var formattedDate = myMoment.format(longDateFormat);
于 2018-04-02T21:58:57.063 回答
4

试试这个:

moment.format().split("T")[0]
于 2017-08-28T22:59:22.067 回答
4

您可以使用此构造函数

moment({h:0, m:0, s:0, ms:0})

http://momentjs.com/docs/#/parsing/object/

console.log( moment().format('YYYY-MM-DD HH:mm:ss') )

console.log( moment({h:0, m:0, s:0, ms:0}).format('YYYY-MM-DD HH:mm:ss') )
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>

于 2018-08-23T12:29:18.770 回答
-1

我迟到了,但这对我来说很完美:

moment().format('YYYY-MM-DD')

于 2021-05-04T05:12:26.320 回答
-3
moment(date).format(DateFormat)

这里 DateFormat 应该是DateFormat = 'YYYY-MM-DD'

于 2021-07-05T10:15:38.183 回答