Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试关注这篇文章,但我不确定是因为我正在运行更新版本的 fullcalendar 还是我做错了什么。
我想到了。
代码中的这一行renderBasic(2, 2, weekends ? 7 : 5, true); 应该renderBasic(2, 7, weekends ? 7 : 5, true) 不是 2 作为第二个参数,它应该是 7 以显示一周中的所有 7 天。
renderBasic(2, 2, weekends ? 7 : 5, true);
renderBasic(2, 7, weekends ? 7 : 5, true)