Even if I am assigning value to name and value fields, event.target is getting as null. event.target.value is getting value but not any other.
<input type= "text"
name= {value}
value = {currentValue}
onChange = { (e) => this.onInputChanged(e) }
disabled = { disabled }
/>
onInputChanged = async (e) => {
await this.setState({ currentValue: e.target.value })
console.log('event', e.target); //This is showing null
this.props.onInputChange(e);
}
import React from "react"; function App() { return ( <input type="text" name="firstName" onChange={event => console. log("onchange is triggered")} /> ); } export default App; Now whenever you type something into the text box, React will trigger the function that we passed into the onChange prop.
To type the useState hook with null initial value in React, use the hook's generic, e.g. const [name, setName] = useState<string | null>(null) . The state variable can be initialized to null and set to the specified type later on in your code.
target gives you the element that triggered the event. So, event. target. value retrieves the value of that element (an input field, in your example).
React reuses the synthetic event object so you can't use it in an async context as it is.
From the docs:
The
SyntheticEvent
is pooled. This means that theSyntheticEvent
object will be reused and all properties will be nullified after the event callback has been invoked. This is for performance reasons. As such, you cannot access the event in an asynchronous way.Note:
If you want to access the event properties in an asynchronous way, you should call
event.persist()
on the event, which will remove the synthetic event from the pool and allow references to the event to be retained by user code.
You either need to extract the information synchronously or call event.persist()
to persist the object before using it in an async context.
Extracting the value synchronously:
onInputChanged = event => {
const value = event.target.value;
(async () => {
await this.setState({ currentValue: value });
this.props.onInputChange(e);
})();
}
Persisting the event before using it in an async context:
onInputChanged = event => {
event.persist();
(async () => {
await this.setState({ currentValue: e.target.value });
console.log('event', e.target);
this.props.onInputChange(e);
})();
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With