- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在使用 Angular 5.2 和 ngbootstrap 1.1。该库有几个不同的日期选择器选项,一个用作组件,另一个用作指令。
我正在使用指令。以下是指向如何使用模板设置 ngbootstrap 指令的示例的链接。
选择了两个日期时,弹出窗口在输入内添加了一个日期。
在我最初的方法中,我试图设置
[(ngModel)]=model
和
this.model = `${this.fromDate} / ${this.toDate}`;
但是,我在设置模型后意识到了这一点。在 ngbootstrap 的日期选择器模块 提供的另一个组件中检查了日期。
private _fromDateStruct(date: NgbDateStruct): NgbDate {
const ngbDate = date ? new NgbDate(date.year, date.month, date.day) : null;
return this._calendar.isValid(ngbDate) ? ngbDate : null;
}
此外,上面的私有(private)方法使得无法扩展类和覆盖检查
class DateInputDirective extends NgbInputDatepicker
我挖得更深了一点,希望能换个服务。 NgbDateAdapter 服务返回对象,如果不准确则返回 null。我的字符串日期范围无法通过。
fromModel(date: NgbDateStruct): NgbDateStruct {
return (date && date.year && date.month && date.day) ? {year: date.year, month: date.month, day: date.day} : null;
此外,我还利用了 Angular 的 useClass 并添加了一个字符串条件。
{
provide: NgbDateAdapter,
useClass: NgbStringAdapter
},
但是,NgbDatePickerInput 类在此类完成之前覆盖了该行为。
不确定我是否遗漏了一些非常简单的东西,或者是否是多次使用 extends 或 useClass 的问题。但我肯定正在寻找对此的一些见解。 stackblitz 链接不是我的实际代码,但它很好地代表了我开始的内容。如果有什么地方写不清楚,请随时与我们联系。谢谢!
最佳答案
可以使用 ElementRef
和 ViewChild
设置输入值。
我的意思是不将 ViewChild
与指令/组件 ( NgbInputDatepicker
) 一起使用,因为指令中元素的所有访问器都是私有(private)的,我不知道如何更改从那里输入,除非在 _writeModelValue
方法中 (line 363) , writeValue
调用它,但它只更新一个日期。
所以步骤是:
ElementRef
和 ViewChild
获得输入元素,Renderer2
用于设置它的值(就像指令那样)NgbDateParserFormatter
格式化模型日期onDateSelection
这是主要代码,我将添加一些注释:
HTML:
<input
#myRangeInput
class="form-control"
placeholder="mm/dd/yyyy"
name="dp"
[(ngModel)]="model"
ngbDatepicker
[dayTemplate]="t"
[autoClose]="false"
[displayMonths]="2"
[maxDate]="maxDate"
[minDate]="minDate"
>
<ng-template #t let-date="date" let-focused="focused">
<span class="custom-day"
[class.range]="isFrom(date) || isTo(date) || isInside(date) || isHovered(date)"
[class.faded]="isHovered(date) || isInside(date)"
(click)="onDateSelection(date)"
(mouseenter)="hoveredDate = date"
(mouseleave)="hoveredDate = null"
>
{{ date.day }}
</span>
</ng-template>
typescript :
import {Component, ViewChild, OnInit, ElementRef, Renderer2} from '@angular/core';
import {
NgbDatepicker,
NgbInputDatepicker,
NgbDateStruct,
NgbCalendar,
NgbDateAdapter,
NgbDateParserFormatter} from '@ng-bootstrap/ng-bootstrap';
...
export class NgbdDatepickerPopup implements OnInit{
...
@ViewChild('myRangeInput') myRangeInput: ElementRef;
constructor(element: ElementRef, private renderer: Renderer2, private _parserFormatter: NgbDateParserFormatter) { }
onDateSelection(date: NgbDateStruct) {
let parsed = ''; // initializing with empty string
if (!this.fromDate && !this.toDate) {
this.fromDate = date;
} else if (this.fromDate && !this.toDate && after(date, this.fromDate)) {
this.toDate = date;
this.input.close();
} else {
this.toDate = null;
this.fromDate = date;
}
if(this.fromDate) {
// if fromDate is set: add the first date
parsed += this._parserFormatter.format(this.fromDate);
}
if(this.toDate) {
// if toDate is set: add the second date with separator
parsed += ' - ' + this._parserFormatter.format(this.toDate);
}
// here we update the input value with the new parsed value
this.renderer.setProperty(this.myRangeInput.nativeElement, 'value', parsed);
}
关于angular - 将日期范围添加到 NgbInputDatepicker 输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50850341/
我正在使用 Angular 5.2 和 ngbootstrap 1.1。该库有几个不同的日期选择器选项,一个用作组件,另一个用作指令。 我正在使用指令。以下是指向如何使用模板设置 ngbootstra
我在弹出窗口中使用日期选择器 ( ng-boostrap ),我想将日期格式更改为 dd-mm-yyyy。 似乎可以通过实现一个新的 NgbDateParserFormatter 来替换默认的 Ngb
我是一名优秀的程序员,十分优秀!