(17个答案)17小时前关门了。我想在页面上显示日期,并想根据浏览器设置中的语言以不同的方式显示它。例如:年/月/日(如为"en")年/月/日(如为"ko")目前我使用dayjs,它实际上没有什么帮助。如何定制它?
c9qzyr3d1#
使用不带选项的toLocaleDateString:
const event = new Date(Date.UTC(2012, 11, 20, 3, 0, 0)); console.log(event.toLocaleDateString('de-DE')); console.log(event.toLocaleDateString('ar-EG')); console.log(event.toLocaleDateString(undefined)); // 19.12.2012 // ١٩/١٢/٢٠١٢ // 12/19/2012
1条答案
按热度按时间c9qzyr3d1#
使用不带选项的toLocaleDateString: