如何从 fullcalender.js 中删除 "p" 和 "a"(对于 "am" 和 "pm")

How to remove "p" and "a" (for "am" and "pm") from fullcalender.js

我正在使用完整日历插件 - 版本 3.9.0 将日历集成到 larvel-project 中。 (https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.9.0/fullcalendar.js)

我日历中的月视图如下所示:

enter image description here

到目前为止一切顺利,但如您所见,“am”和“pm”有缩写“a”和“p”。因为我正在开发一个德国项目,所以我想使用格式 HH:mm 而没有“a”和“p”。

我的代码如下:

 firstDay: 1,
            firstHour: 0,
            slotMinutes: 15,
            slotLabelFormat: ['HH:mm'],

            axisFormat: 'HH:mm',

            views: {
                month: {
                    columnFormat: 'ddd' // set format for month here

                },
                week: {
                    columnFormat: 'D.M.', // set format for week here
                    titleFormat: 'D. MMMM YYYY'
                },
                day: {
                    columnFormat: 'd.M.Y', // set format for day here
                    titleFormat: 'D. MMMM YYYY'
                }
            },

            displayEventTime: true,

            events: '/full-calendar',
            selectable:false,
            selectHelper: true,
            droppable: false,

怎么了?

您可以使用 属性 时间格式:

$('#calendar').fullCalendar({
  events: [
    {
      title:  'My Event',
      start:  '2010-01-01T14:30:00',
      allDay: false
    }
    // other events here...
  ],
  timeFormat: 'H(:mm)' // uppercase H for 24-hour clock
});

参考:https://fullcalendar.io/docs/v3/timeFormat