0

我在用"react-big-calendar": "^0.20.3",

目前我正在使用getDrilldownView={(targetDate, currentViewName, configuredViewNames) => this.updateDate(targetDate, currentViewName, configuredViewNames)}组件上的道具来获取大日历反应 js 中的开始和结束时间。我觉得这不是获取开始和结束日期的好方法,我也无法在文档中找到它。

https://codesandbox.io/s/vw3wlm63y

我想要的是 2019/1/27 作为开始日期和 2019/3/2 作为结束日期

onRangeChange在视图或日期更改时给出开始和结束日期,但我想要在页面加载时

4

2 回答 2

0

我在用

this.startDate = moment().subtract(1, 'months').endOf('month').startOf('week').format('YYYY/MM/DD');
        this.endDate = moment().add(1, 'months').startOf('month').endOf('week').format('YYYY/MM/DD');

它可以获取第一次加载当前日历视图的开始和结束日期。我认为没有内置的方法来获取详细信息。

于 2019-02-22T08:40:11.813 回答
0

我用 react-big-calendar 遇到了同样的问题,我用以下方法解决了它:

const start = moment().startOf('month').startOf('week').format('YYYY/MM/DD');
const end = moment().endOf('month').endOf('week').format('YYYY/MM/DD');
于 2019-04-06T01:45:20.797 回答