我试图实现 mattlewis92 的角度日历(https://github.com/mattlewis92/angular-calendar),但我无法弄清楚我需要包含什么才能拥有一个工作的标题组件。
问题:
<h3>{{ viewDate | calendarDate:(view + 'ViewTitle'):'en' }}</h3>
this.dateFormatter[method] is not a function
但它在以下情况下有效:
<h3>{{ viewDate | calendarDate:('dayViewTitle'):'en' }}</h3>
其他:
TypeError: addFn is not a function
at CalendarNextViewDirective.onClick (calendar-next-view.directive.js:33)
与上一个日期相同。
有没有人建议?