gpt4 book ai didi

javascript - 使用 moment 获取上个月的月份名称

转载 作者:行者123 更新时间:2023-12-02 22:33:14 25 4
gpt4 key购买 nike

我使用以下代码来获取最近几个月的开始日期和结束日期。

// Previous month
var startDateMonthMinusOne = moment().subtract(1, "month").startOf("month").unix();
var endDateMonthMinusOne = moment().subtract(1, "month").endOf("month").unix();

// Previous month - 1

var startDateMonthMinusOne = moment().subtract(2, "month").startOf("month").unix();
var endDateMonthMinusOne = moment().subtract(2, "month").endOf("month").unix();

我怎样才能获得月份名称? (一月、二月……)

最佳答案

使用 format() 函数代替 unix(),使用月份名称的 MMMM 格式说明符来格式化日期时间。

var monthMinusOneName =  moment().subtract(1, "month").startOf("month").format('MMMM');

参见章节Display / Format in the documentation

关于javascript - 使用 moment 获取上个月的月份名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42245587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com