ดังนั้นรหัสต่อไปนี้จึงอยู่ใน Angular 4 และฉันคิดไม่ออกว่าทำไมมันถึงไม่ได้ผลอย่างที่คาด
นี่คือตัวอย่างของเครื่องจัดการของฉัน:
onUpdatingServerName(event: Event) {
console.log(event);
this.newserverName = event.target.value; //this wont work
}
องค์ประกอบ HTML:
<input type="text" class="form-control" (input)="onUpdatingServerName($event)">
รหัสทำให้ฉันมีข้อผิดพลาด:
ไม่มีคุณสมบัติ 'value' ในประเภท 'EventTarget'
แต่อย่างที่เห็นได้ในconsole.log
ค่านั้นมีอยู่ในไฟล์event.target
.