我试图通过将fillCalendar()从组件的方法中提取到它自己的js文件中并导入它来清理这个react组件。最初this.state.datesArray是在componentWillMount()生命周期方法中设置的。现在我试图在构造函数中直接初始化它,因为这就是react文档recommends.现在这样做会抛出“TypeError:Object(...)isnotafunction”错误,我不知道为什么。这是Calendar.js使用的样子seehere.日历.jsimportReact,{Component}from'react';import{fillCalendar}f