1

我需要在我的组件中的 BlueprintJS( documentation ) 和 RangePicker 上创建 DateRangePicker,就像在这个屏幕截图中一样。

我安装了所有 npm 包,并按照说明完成所有操作:

import { DateRangePicker } from "@blueprintjs/datetime";

<DateRangePicker
    value={[this.state.startDate, this.state.endDate]}
    onChange={this.handleDateChange}
/>

但无论如何都有错误:

Cannot read property 'startDate' of null
TypeError: Cannot read property 'startDate' of null

请帮忙,我需要什么来工作 DateRangePicker

4

1 回答 1

0

您应该定义state为组件的字段。默认情况下,如果state未设置,则等于null

import React from 'react'
import { DateRangePicker } from "@blueprintjs/datetime";

class MyAwesomeComponent extends React.Component {
    constructor(props) {
        super(props)
        this.state = {
            startDate: new Date("2018-05-01T12:13:30.643Z"),
            endDate: new Date("2018-05-03T12:13:30.643Z")
        }
    }

    render() {
        return (
            <div className="my-component">
                <DateRangePicker
                    value={[this.state.startDate, this.state.endDate]}
                    onChange={this.handleDateChange}
                />
            </div>
        )
    }
}
于 2018-05-03T07:31:53.763 回答