2

我正在对 npm 包使用 react-datetime 控件:单击此处。在那个时间选择器中,我应该如何设置间隔。例如,我想每 5 分钟设置一次间隔,所以首先显示 0,然后显示 5、10、15 等。我怎样才能做到这一点?

我正在使用看起来像这样但不工作:

例子

4

1 回答 1

4

timeConstraints允许自定义步骤配置,因此,它应该如下所示:

  minutes: { step: 5 }

例子:

{
  timeConstraints = {
    minutes: {
      step: 5
    }
  }

  render() {

    return (
      <Datetime timeConstraints={this.timeConstraints} />
    );
  }
}
于 2017-06-29T11:36:10.170 回答