本文介绍了在 weekview 中更改日期标题的格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何更改 Fullcalendar -> weekview 中日期的格式.
它现在说:
How can I change the formatting of the date in Fullcalendar -> weekview.
It now says:
Sun 7/24 Mon 7/25 Tue 7/26 Wed 7/27 Thu 7/28 Fri 7/29 Sat 7/30
我想改变月份和日期,所以它说
I want to switch month and day around so it says
Sun 24/7 Mon 25/7 Tue 26/7 Wed 27/7 Thu 28/7 Fri 29/7 Sat 30/7
这是我们的用户在我居住/工作的国家/地区习惯的方式.
which is the way our users are used to in the country where I live/work.
推荐答案
我找到了解决方案:
columnFormat: {
month: 'ddd',
week: 'ddd d/M',
day: 'dddd d/M'
},
这篇关于在 weekview 中更改日期标题的格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!