我需要仅显示一周中的某一天,并且在使用reg ex作业之前,我在moment.js中寻找内置格式方法。
我得到了什么:
moment().add(2, 'days').calendar() = "Thursday at 12:46 PM"
我需要的只是周四和#34;
答案 0 :(得分:6)
您希望使用format
:
moment().add(2, 'days').format('dddd') // "Thursday"
calendar
API文档说明format
提供了the date compared to a reference date,而if(GameManager.instance == null)
new GameManager();
则允许您format the date how you like。