我创建了一个angular7 i网站,我正在使用[ngxTimepicker]作为选择时间。我从timepicker中进行选择后获得了选定的值。我已经使用了[[ngModel)],但是在控制台中出现以下错误: / p>
Error: Cannot assign to a reference or variable!
告诉我任何人如何使用[[ngModel) ],然后从模型中选择值后,使用[ngxTimepicker]和fire功能。检查下面的小提琴,并告诉我代码中的错误是什么?
<div class="col-sm-6">
<input aria-label="default time" [ngxTimepicker]="mStartTime" [value]="'05:11 pm'" [(ngModel)]="mStartTime"
(focusout)="setData()" readonly>
<ngx-material-timepicker #mStartTime></ngx-material-timepicker>
</div>
答案 0 :(得分:-1)
在.ts文件中 使用这个
export class Component implements OnInit {
@ViewChild("YOURTIMEPICKERNAME") ANYVARIABLE: ElementRef;}
要获取时间值,请使用:
onClick() {
console.log(this.ANYVARIABLE.time);}
金刚鹦鹉!