gpt4 book ai didi

datepicker - 如何在 Angular 5 中仅启用特定日期?

转载 作者:行者123 更新时间:2023-12-02 03:41:13 25 4
gpt4 key购买 nike

我有一组日期,并且我只想启用 <mat-datepicker> 中的那些日期.

"ListOfDates": [
{
"startDate": "2018-01-01T08:00:00"
},
{
"startDate": "2018-01-02T08:00:00"
},
{
"startDate": "2018-01-03T09:00:00",
}]

这是我的 html 代码:

<mat-form-field>
<input matInput
[matDatepicker]="picker"
[matDatepickerFilter]="dateFilter"
placeholder="Choose a date">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>

在我的Component.ts文件:

@Component({...})
export class SomeComponent.ts {

dateFilter = (date: Date) => date.getDate()

}

谁能帮忙解决这个问题吗?

最佳答案

您将需要一个自定义验证器。更多详细信息可以在这里找到:https://material.angular.io/components/datepicker/overview#date-validation

本质上,您给出一个函数,该函数接受日期并返回一个 bool 值,指示该日期是否有效。在您的情况下,您希望在 Controller 中检查给定日期是否是您列表中的成员。这是一个基本的实现:

HTML:

<mat-form-field class="example-full-width">
<input matInput [matDatepickerFilter]="myFilter" [matDatepicker]="picker" placeholder="Choose a date">
<mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
<mat-datepicker #picker></mat-datepicker>
</mat-form-field>

TS:

import {Component} from '@angular/core';

/** @title Datepicker with filter validation */
@Component({
selector: 'datepicker-filter-example',
templateUrl: 'datepicker-filter-example.html',
styleUrls: ['datepicker-filter-example.css'],
})
export class DatepickerFilterExample {
validDates = {
"2018-01-01T08:00:00": true,
"2018-01-02T08:00:00": true
}

myFilter = (d: Date): boolean => {
// Using a JS Object as a lookup table of valid dates
// Undefined will be falsy.
return validDates[d.toISOString()];
}
}

关于datepicker - 如何在 Angular 5 中仅启用特定日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48546547/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com