如何使用moment.js获取上个月的第一天和未来一个月的最后一天,请指导我实现此目的所需的相关脚本
答案 0 :(得分:12)
尝试类似
的内容 for y = 0 to ImageHeight - 1
for x = 0 to ImageWidth - 1
GetPixel(x,y,red,grn,blu)
{read RGB data from 24bpp file}
d0 = red^2 + grn^2 + blu^2
ColorIndex = 0
for cl = 0 to 255
GetPaletteData(p_red,p_gre,p_blu)
{read RGB data from 8bpp palette}
d = (red - p_red)^2 + (grn - p_grn)^2 + (blu - p_blu)^2
if d0 >= d then
ColorIndex = cl
d0 = d
end if
next cl
{use ColorIndex to create your 8bpp file}
next x
next y
和
var prevMonthFirstDay = new moment().subtract(1, 'months').date(1)
答案 1 :(得分:2)
或更详细:
prevMonthFirstDay : moment().subtract(1, 'months').startOf('month')
nextMonthLastDay: moment().add(1, 'months').endOf('month')