最近使用 ant-d
的 DatePicker.RangePicker
时,在给其赋予一个默认的值或者初始值时,出现了一个严重的错误导致崩溃,如下所示
实际上是缺少一些默认的文件导入,我们一般导入的文件是 dayjs
,实际上还应该导入下面更多文件才能正常使用该功能
js
import dayjs from "dayjs"
import advancedFormat from 'dayjs/plugin/advancedFormat'
import customParseFormat from 'dayjs/plugin/customParseFormat'
import localeData from 'dayjs/plugin/localeData'
import weekday from 'dayjs/plugin/weekday'
import weekOfYear from 'dayjs/plugin/weekOfYear'
import weekYear from 'dayjs/plugin/weekYear'
dayjs.extend(customParseFormat)
dayjs.extend(advancedFormat)
dayjs.extend(weekday)
dayjs.extend(localeData)
dayjs.extend(weekOfYear)
dayjs.extend(weekYear)