У меня есть этот шаблон HTML:
<input type="text"
ngModel
#myValue="ngModel"
name="{{ fieldName }}"
id="{{ fieldName }}"
value="{{ myVal }}"
class="form-control"
(change)="checkDirty(myValue)">
Как проверить, не заполнено ли это поле в файле my.component.ts?
Теперь у меня есть только этот базовый код в моем.Файл component.ts:
export class UriFieldComponent implements OnInit {
constructor() { }
ngOnInit() { }
checkDirty(value) {
// in here I need to check is dirty or not
}
}