微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

FullCalendar React上的资源时间表存在问题

如何解决FullCalendar React上的资源时间表存在问题

我正在使用带有资源时间轴插件的react和full calendar来构建应用程序,下面是我的组件代码

import React from "react";
import Navbar from "../components/Navbar";
import FullCalendar from "@fullcalendar/react";
import resourceTimelinePlugin from "@fullcalendar/resource-timeline";

export default function Testerino() {
  return (
    <div>
      <Navbar />
      <main className="global-container shadow">
        <h1>Testes</h1>

        <FullCalendar
          schedulerLicenseKey="CC-Attribution-NonCommercial-NoDerivatives"
          plugins={[resourceTimelinePlugin]}
        />

      </main>
    </div>
  );
}

但是,我仍然收到此错误消息,是否忘记发送道具或其他东西?预先感谢您的帮助。

TypeError: Cannot read property 'resourceAreaWidth' of undefined
new ResourceTimelineView
D:/Documentos/GAH-Sys/frontend/src/ResourceTimelineView.tsx:55

  52 |   super(props,context)
  53 | 
  54 |   this.state = {
> 55 |     resourceAreaWidth: context.options.resourceAreaWidth,| ^  56 |     spreadsheetColWidths: []
  57 |   }
  58 | }
View compiled

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。