在ng-pick-datetime中没有任何事件

<label class="fieldlabel">{{ attribute.attribute.displayName }}: </label>
<label>
  <mat-form-field class="field-full-width">
    <input [owlDateTimeTrigger]="datePicker" placeholder="Date" [owlDateTime]="datePicker"
  [dateTimeInput]="emitValue()" [(ngModel)]="value.value">
    <owl-date-time #datePicker></owl-date-time>
 </mat-form-field>
</label>

我也导入所需的模块:
import { OwlDateTimeModule, OwlNativeDateTimeModule } from 'ng-pick-datetime';

https://www.npmjs.com/package/ng-pick-datetime
javascript - Ng日期时间选择器的值更改不起作用-LMLPHP

对于其他事件,我也有相同的错误:afterPickerOpenyearSelectedmonthSelecteddateTimeChange

最佳答案

dateTimeInput是输出(事件)而不是输入。因此,您需要使用()而不是[]

(dateTimeInput)="emitValue()"

有关输出的更多信息,请阅读官方的Angular docs

关于javascript - Ng日期时间选择器的值更改不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51483262/

10-11 13:26