我在我的webApp
中使用带有反应形式的
md2-datepicker,但我需要重置所选值。
有人知道我该怎么做吗?
我尝试做这样的事情,但它对我不起作用。最后选择的值不会重置。
handleDayClick(request: any) {
this.request = new BookingRequest();
this.request.checkIn = request.date.format();
this.requestForm.setValue(this.request);
this.openDialog();
}
我还有一个表格模型:
export class BookingRequest {
id?: number;
comment: string = '';
checkIn: string = null;
checkOut: string = null;
approved: boolean = false;
}
使用类来重置值。
export class BookingRequest {
id: number = null;
comment: string = '';
checkIn: string = null;
checkOut: string = null;
approved: boolean = false;
}