OnSelectSlot 在移动浏览器中不起作用。
在 Android 设备中,我用 chrome 浏览器对其进行了调试,但没有奏效。
在 IOS 设备中,我使用 Safari 浏览器进行了调试,但也无法正常工作。
在计算机浏览器中,单击它时可以顺利运行,但在手机上则不然。有谁知道解决这个问题的方法?

下面是代码-------------------

           <BigCalendar
                selectable
                events={[
                    {
                        id: 0,
                        title: <div>{this.state.morningShiftAppointments + this.state.eveningShiftAppointments}<br/>
                            <div>{this.state.morningShiftAppointments}/{this.state.eveningShiftAppointments}</div>
                        </div>,
                        allDay: true,
                        start: new Date(this.state.year, this.state.month, this.state.date),
                        end: new Date(this.state.year, this.state.month, this.state.date),
                    }
                ]}
                views={['month']}
                onSelectSlot={this.onSelectSlot.bind(this)}
                dayPropGetter={customDayPropGetter}
                longPressThreshold={1}
                defaultDate={new Date()}
                eventPropGetter={
                    (event, start, end, isSelected) => {
                        let newStyle = {
                            backgroundColor: "lightgrey",
                            color: 'black',
                            borderRadius: "0px",
                            border: "none",
                            minWidth: "100%"
                        };
                        return {
                            className: "",
                            style: newStyle
                        };
                    }
                }
            />

最佳答案

来自 React-Big-Calendar 文档:

关于javascript - onSelectSlot 在 Mobile React Big calendar 中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54572237/

10-08 21:47