Getting Object is possibly 'null'. in Angular template file
问题 In my Angular app, I'm getting the following error: Object is possibly 'null'. The problem is that I'm getting this error not because of some typescript code, but because of this html template: <form [formGroup]="form"> <timepicker [formControlName]="'myControl'"></timepicker> </form> <br> <button class="btn btn-succes" (click)="form.get('myControl').enable()">Enable Control</button> <button class="btn btn-warning" (click)="form.get('myControl').disable()">Disable Control</button> <br><br>