jQuery fullCalendar displayed undefined on title

后端 未结 10 633
野的像风
野的像风 2021-01-04 04:19

i\'m using jQuery fullcalendar on a ReactJs component.

i have a

on the render method

and on componentD

相关标签:
10条回答
  • 2021-01-04 05:14

    I was having the same issue after upgrading fullCalendar.js from v2.6.1 to v3.4.0

    In my case the Issue resolved by including fullcalendar.js & scheduler.min.js after moment.js

    0 讨论(0)
  • 2021-01-04 05:26

    I ended up dumping the jquery full calendar in favor of react-big-calendar. jQuery not playing well with react.

    0 讨论(0)
  • 2021-01-04 05:26

    I found using fullcalander.js rather than fullcalendar.min.js fixed this problem for me. Have not investigated why though.

    0 讨论(0)
  • 2021-01-04 05:26

    Probably a locale problem. I had the same issue as I was using pt-br.

    I solved mine by removing the line

    <script src='../fullcalendar.min.js'></script>

    and leaving the

    <script src='../fullcalendar.js'></script>

    0 讨论(0)
提交回复
热议问题