Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
601 views
in Technique[技术] by (71.8m points)

前端传后端Date时间类型,要求只要Date时间类型里只包括年月

根据我自己的试验,不管使用new Date('2020-10')还是用moment('2020-10').format(),返回的Date格式都是2020-10-01当天的date对象,包含了年月日时分秒(2020-10-01T00:00:00+08:00),如何在date对象里只包括年月


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
// => 2020年10月
moment('2020-10').format('YYYY年MM月')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...