Musisz jawnie podać TypeScript typ elementu HTMLElement, który jest Twoim celem.
Aby to zrobić, użyj typu ogólnego, aby rzutować go na właściwy typ:
this.countUpdate.emit((<HTMLTextAreaElement>e.target).value./*...*/)
lub (jak chcesz)
this.countUpdate.emit((e.target as HTMLTextAreaElement).value./*...*/)
lub (znowu, kwestia preferencji)
const target = e.target as HTMLTextAreaElement;
this.countUpdate.emit(target.value./*...*/)
Dzięki temu TypeScript będzie wiedział, że element jest plikiem textarea
i będzie wiedział o właściwości value.
To samo można zrobić z każdym rodzajem elementu HTML, ilekroć podasz TypeScript nieco więcej informacji o ich typach, odwdzięczy się to odpowiednimi wskazówkami i oczywiście mniejszą liczbą błędów.
Aby ułatwić sobie na przyszłość, możesz chcieć bezpośrednio zdefiniować zdarzenie z typem jego celu:
// create a new type HTMLElementEvent that has a target of type you pass
// type T must be a HTMLElement (e.g. HTMLTextAreaElement extends HTMLElement)
type HTMLElementEvent<T extends HTMLElement> = Event & {
target: T;
// probably you might want to add the currentTarget as well
// currentTarget: T;
}
// use it instead of Event
let e: HTMLElementEvent<HTMLTextAreaElement>;
console.log(e.target.value);
// or in the context of the given example
emitWordCount(e: HTMLElementEvent<HTMLTextAreaElement>) {
this.countUpdate.emit(e.target.value);
}
<img [src]="url"> <br/> <input type='file' (change)="showImg($event)">
Składnik:... this.url = event.target.result;
Czasami działa czasami nie, jeśli nie jest to błąderror TS2339: Property 'result' does not exist on type 'EventTarget'
Tak jak zasugerowałeś, powiedz TS więcej o tym, w miejscu,HTMLTextAreaElement
które próbowałem,HTMLInputElement
a potemtarget.value
nie więcej err, ale obraz się nie wyświetla.