我在我的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;
}
答案 0 :(得分:1)
道具名称为disabledHours
,它是一个函数。
function getDisabledHours() {
var hours = [];
for (let i = 0; i < moment().hour(); i++) {
hours.push(i);
}
return hours;
}
<TimePicker disabledHours={getDisabledHours} />
工作codesandbox。