日期范围选择器 - 日历标题本地化格式

问题描述 投票:0回答:1

将本地化应用于角度日期范围选择器时,日历标题的日期格式不正确。日期应显示为YYYY,MM,但显示为MM,YYYY。我正在使用moment()。format('ll')在文本输入中显示本地化格式,但使用日期范围选择器locale.format选项对日历日期格式没有任何影响。

var dateOptions = {
  locale: {
    format: 'll'
  }
};

enter image description here

localization angular-daterangepicker
1个回答
0
投票

更新了daterangepicker.js,如下所示:

//在第719行附近添加了新的var

var calMonth = moment([calendar[1][1].year(), calendar[1][1].month()]).format("L");

//第754行

html += '<th colspan="5" class="month">' + calMonth + '</th>'; 
© www.soinside.com 2019 - 2024. All rights reserved.