admin管理员组文章数量:1341748
My application sends an HTML file with javascript like this:
$(function () {
moment.locale('fr');
$('#datetimepicker9').datetimepicker({
viewMode: 'years',
locale: 'fr',
format: '' /* <========= problem! */
});
});
With moment, when I set to a locale, is there a way to get the short date format of the configuration like "'j F Y'
" for fr
?
I found it but it's hack-ish:
moment()['_locale']['_longDateFormat']['L']
So my code now:
$(function () {
moment.locale('fr');
$('#datetimepicker9').datetimepicker({
viewMode: 'years',
locale: 'fr',
format: moment()['_locale']['_longDateFormat']['L']
});
});
I dont like that, is there a clean way to get the format?
My application sends an HTML file with javascript like this:
$(function () {
moment.locale('fr');
$('#datetimepicker9').datetimepicker({
viewMode: 'years',
locale: 'fr',
format: '' /* <========= problem! */
});
});
With moment, when I set to a locale, is there a way to get the short date format of the configuration like "'j F Y'
" for fr
?
I found it but it's hack-ish:
moment()['_locale']['_longDateFormat']['L']
So my code now:
$(function () {
moment.locale('fr');
$('#datetimepicker9').datetimepicker({
viewMode: 'years',
locale: 'fr',
format: moment()['_locale']['_longDateFormat']['L']
});
});
I dont like that, is there a clean way to get the format?
Share Improve this question edited Dec 10, 2015 at 23:18 Olivier Pons asked Dec 10, 2015 at 23:03 Olivier PonsOlivier Pons 15.8k27 gold badges122 silver badges223 bronze badges 02 Answers
Reset to default 6You can retrieve locale-specific format strings with the longDateFormat()
of the current localeData()
:
moment.locale('fr');
var localeData = moment.localeData();
var dateFormat = localeData.longDateFormat('LL');
console.log(dateFormat); // D MMMM YYYY
Later versions of moment.js have localised formatting available - http://momentjs./docs/#/displaying/format/
Localized formats
Because preferred formatting differs based on locale, there are a few tokens that can be used to format a moment based on its locale.
There are upper and lower case variations on the same formats. The lowercase version is intended to be the shortened version of its uppercase counterpart.
Time LT 8:30 PM
Time with seconds LTS 8:30:25 PM
Month numeral, day of month, year L 09/04/1986
l 9/4/1986
Month name, day of month, year LL September 4 1986 ll Sep 4 1986
Month name, day of month, year, time LLL September 4 1986 8:30 PM
lll Sep 4 1986 8:30 PM
Month name, day of month, day of week, year, time LLLL Thursday, September 4 1986 8:30 PM
llll Thu, Sep 4 1986 8:30 PM
L LL LLL LLLL LT are available in version 1.3.0. l ll lll llll are available in 2.0.0. LTS was added in 2.8.4.
So you can get the localised short date format with:
var formattedDate = moment(d).format("l");
本文标签: javascriptmomentjs how to get short date formatStack Overflow
版权声明:本文标题:javascript - moment.js: how to get short date format? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743605198a2509195.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论