在 react-big-calendar 上禁用拖动选择

Disable drag selection on react-big-calendar

我在 API 中没有看到任何禁用此行为的内容。

我只希望用户必须点击特定日期。

使用道具 onSelecting。例如:onSelecting = {slot => false}

我必须在不拖拽的情况下选择点击日期。 使用具有所需逻辑的 onSelectSlot

onSelectSlot={(e) => {
  if (e.slots?.length > 1) return; // or a message
  alert("onSelectSlot" + JSON.stringify(e));
}}

注意:这不会处理拖动选择样式!!