Luxon js从工作日数中获取日期
Posted
技术标签:
【中文标题】Luxon js从工作日数中获取日期【英文标题】:Luxon js get day from week day number 【发布时间】:2021-12-09 04:49:45 【问题描述】:Moment 可以选择根据周数(0 到 6)获取日期名称。我看到 luxon 有星期几,数字从 1 到 7(星期一是 1,星期日是 7)https://moment.github.io/luxon/#/parsing 但我不知道如何将星期数转换为日期名称?
瞬间
moment().day(0).format('ddddd'); // Sunday
【问题讨论】:
'cccc' 还是 'EEEE'? moment.github.io/luxon/#/formatting ? 【参考方案1】:我会看看 luxon 的 Info.weekdays,它会给出各种格式的日期名称。
但是,日期编号与 Moment 略有不同,因此您必须进行翻译。
const Info = luxon;
// moment.js days of week: Sunday: 0 -> Monday: 6
const momentDays = [0,1,2,3,4,5,6];
console.log('Index', 'Long', 'Short');
momentDays.forEach(day =>
// Luxon day indexes are Monday: 0 -> Sunday 6
const luxonDay = (day + 6) % 7;
console.log(day, Info.weekdays('long')[luxonDay], Info.weekdays('short')[luxonDay]);
)
.as-console-wrapper max-height: 100% !important; top: 0;
<script src="https://cdnjs.cloudflare.com/ajax/libs/luxon/2.0.2/luxon.min.js" integrity="sha512-frUCURIeB0OKMPgmDEwT3rC4NH2a4gn06N3Iw6T1z0WfrQZd7gNfJFbHrNsZP38PVXOp6nUiFtBqVvmCj+ARhw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
【讨论】:
以上是关于Luxon js从工作日数中获取日期的主要内容,如果未能解决你的问题,请参考以下文章