反应fullCalendar,在eventReceive函数中到达this.props

问题描述

我想用事件的开始时间设置父级的属性之一,但是我无法从function(info)方法内部访问this.props。我该如何使用我想使用的方法

eventReceive={function (info) {
                this.props.onChangeStartDate(info.start);
              }}

onChangeStartDate是我父母的功能之一,它在父母组件中设置约会的开始日期,我想提供刚刚添加到日历中的事件数据作为该函数的参数。

我遇到以下错误

无法读取未定义的属性'onChangeAppointment'

感谢您的帮助。

解决方法

以下内容将解决您的错误。

eventReceive={(info) => {
    this.props.onChangeStartDate(info.start);
}}

哪里 () => {}是常用的箭头功能。参见documentation

发生错误的原因是因为您在函数范围内丢失了此上下文。