4
我需要僅顯示一週中的某一天,因此在使用reg ex作爲工作之前,我正在尋找內置格式的moment.js方法。有沒有辦法從moment.js,moment().add(2,'days')。calendar()中移除hh:mm?
我得到什麼:
moment().add(2, 'days').calendar() = "Thursday at 12:46 PM"
我需要的是獲得唯一的 「週四」
我需要僅顯示一週中的某一天,因此在使用reg ex作爲工作之前,我正在尋找內置格式的moment.js方法。有沒有辦法從moment.js,moment().add(2,'days')。calendar()中移除hh:mm?
我得到什麼:
moment().add(2, 'days').calendar() = "Thursday at 12:46 PM"
我需要的是獲得唯一的 「週四」
而不是使用calendar
,要使用format
:
moment().add(2, 'days').format('dddd') // "Thursday"
API文檔解釋說calendar
給出the date compared to a reference date,而format
允許你format the date how you like。