我需要在一个组件视图的两个mat datepicker字段中选择两种不同的日期格式(YYYY-MM-DD和YYYY-MM)。
我正在使用角度6.0.3和材料6.4.7。
我在使用MAT_DATE_FORMATS的应用程序模块中将datepicker格式配置为YYYY-MM-DD,并且它可以全局工作,但是如上所述,我需要在一些datepicker字段中将此格式覆盖为YYYY-MM。 不幸的是,我不知道如何实现这一目标。
你能帮我吗?
我的代码的一部分:
import { Component, OnInit, ViewChild } from '@angular/core';
import { FormGroup, FormControl } from '@angular/forms';
@Component({
selector: 'app-invoice-list',
templateUrl: './invoice-list.component.html',
styleUrls: ['./invoice-list.component.css']
})
export class InvoiceListComponent {
filterForm: FormGroup;
@ViewChild('month_picker') month_picker;
constructor() {
this.filterForm = new FormGroup({
assigned_date_from: new FormControl(),
assigned_date_to: new FormControl(),
assigned_month: new FormControl(),
});
}
}
<div class="container" [formGroup]="filterForm">
<div class="container" fxLayout="row" fxLayout.xs="column" fxLayoutWrap fxLayoutGap="0.5%" fxLayoutAlign="start">
<div fxFlex="32%">
<mat-form-field>
<input matInput [matDatepicker]="date_from_picker" (focus)="date_from_picker.open()" formControlName="assigned_date_from" placeholder="Date from">
<mat-datepicker-toggle matSuffix [for]="date_from_picker"></mat-datepicker-toggle>
<mat-datepicker #date_from_picker></mat-datepicker>
</mat-form-field>
</div>
<div fxFlex="32%">
<mat-form-field>
<input matInput [matDatepicker]="date_to_picker" (focus)="date_to_picker.open()" formControlName="assigned_date_to" placeholder="Date to">
<mat-datepicker-toggle matSuffix [for]="date_to_picker"></mat-datepicker-toggle>
<mat-datepicker #date_to_picker></mat-datepicker>
</mat-form-field>
</div>
<!-- In below input I want month year format - YYYY-MM - so different than default format in above fields -->
<div fxFlex="32%">
<mat-form-field>
<input matInput [matDatepicker]="month_picker" (focus)="month_picker.open()" formControlName="assigned_month" placeholder="Month">
<mat-datepicker-toggle matSuffix [for]="month_picker"></mat-datepicker-toggle>
<mat-datepicker #month_picker></mat-datepicker>
</mat-form-field>
</div>
</div>
</div>
答案 0 :(得分:1)
请尝试这个。 在您的HTML
<mat-form-field>
<input matInput [matDatepicker]="month_picker" (focus)="month_picker.open()" [value] = "selectedMonth" placeholder="Month">
<mat-datepicker-toggle matSuffix [for]="month_picker"></mat-datepicker-toggle>
<mat-datepicker #month_picker
startView="multi-year"
(monthSelected)="chosenMonthHandler($event, month_picker)"></mat-datepicker>
</mat-form-field>
在您的.ts
中 selectedMonth = new Date();
chosenMonthHandler(normlizedMonth, datepicker) {
var tempDate = JSON.stringify(normlizedMonth).replace("\"",'').split("-")
var month = parseInt(tempDate[1])
var year = month == 12?parseInt(tempDate[0])+1:parseInt(tempDate[0])
var year = month == 12?parseInt(tempDate[0])+1:parseInt(tempDate[0])
month = month == 12?1:month+1;
this.selectedMonth = new Date(year + "-" + month)
console.log(year + " " + month)
datepicker.close();
}
这很好用,但是在选择一个月后将所选日期显示为1。但是我认为这符合您的要求。
答案 1 :(得分:1)
答案 2 :(得分:0)
http://brickydev.com/angular-material-datepicker-with-many-custom-date-formats/
我找到了这个链接,这个解决方案对我有用。
步骤 1:创建指令
ng generate directive customDateFormat
第 2 步:
import { Directive } from '@angular/core';
import { MAT_DATE_FORMATS } from '@angular/material/core';
export const FORMAT = {
parse: {
dateInput: 'DD-MM-YYYY',
},
display: {
dateInput: 'DD-MM-YYYY',
monthYearLabel: 'MMM YYYY',
dateA11yLabel: 'LL',
monthYearA11yLabel: 'MMMM YYYY',
},
};
@Directive({
selector: '[appCustomeDateFormats]',
providers: [{ provide: MAT_DATE_FORMATS, useValue: FORMAT }],
})
export class CustomeDateFormatsDirective {
constructor() {}
}
第 3 步:在模板中使用此指令。
<mat-form-field class="example-full-width" appCustomeDateFormats>
<mat-label>Start Date</mat-label>
<input
matInput
[matDatepicker]="startDate"
formControlName="from_date"
/>
<mat-datepicker-toggle
matSuffix
[for]="startDate"
></mat-datepicker-toggle>
<mat-datepicker touchUi #startDate></mat-datepicker>
</mat-form-field>