The value of getting select in React indicates that the value property is not defined?

just came into contact with the front end of the React code, it is really a big head.
go straight to the code. Isn"t the value attribute in e.target.value a built-in property? The console error is not defined.

 textChange = (e)=>{
       let value = e.target.value;
        this.setState({
           textValue:value,
        })
  
    }

the case where e is printed out is the value of key here



Apr.07,2021

target is undefined, please print out e-check

Menu