如何禁用蚂蚁设计时间选择器粘贴时间

时间:2020-05-18 06:53:08

标签: reactjs antd

我在我的React应用程序中使用 ant design time picker ,我在时间计时上有一些冲突,我想知道如何禁用今天当前时间之前的过去时间。

这是我的代码

protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
    {
        if (User.Identity.IsAuthenticated)
        {
            Response.Redirect(ResolveUrl("~NewPage.aspx"), false);
            Context.ApplicationInstance.CompleteRequest();
        }
    }
}


   getDisabledTime = () => {

        var hours = [];
        for(var i =0; i < moment().hour(); i++){
            hours.push(i);
        }
        return hours;

    }

1 个答案:

答案 0 :(得分:1)

道具名称为disabledHours,它是一个函数。

function getDisabledHours() {
  var hours = [];
  for (let i = 0; i < moment().hour(); i++) {
    hours.push(i);
  }
  return hours;
}


<TimePicker disabledHours={getDisabledHours} />

工作codesandbox