从文档设置格式l
开始,格式为“M / D / YYYY”。
有没有办法根据区域设置以D/M
或M/D
格式获取日期?这是我现在的代码。
var locale = window.navigator.userLanguage || window.navigator.language;
moment.locale(locale);
var momentTime = moment(d);
console.log(momentTime.format('l'));
例如,如果区域设置为French
,则日期应以D/M
格式返回,如果区域设置为english-us
,则日期应以M/D
格式返回自动。
答案 0 :(得分:7)
执行所需操作的一种方法是获取本地化longDateFormat
,然后使用正则表达式删除年份部分。
这是一个使用localeData
然后longDateFormat
的工作示例。我不确定它是否适用于每个语言环境,但它为fr
和en-us
(可能还有许多其他语音)提供了正确的结果。
var locale = window.navigator.userLanguage || window.navigator.language;
moment.locale(locale);
// Get locale data
var localeData = moment.localeData();
var format = localeData.longDateFormat('L')
// Remove year part
format = format.replace(/.YYYY/, '');
var momentTime = moment();
console.log(momentTime.format(format));
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.17.1/moment-with-locales.min.js"></script>