ReactJs : DropDown Event Value gets set to empty string despite the event having been triggered correctly
问题 OperationSavDetails.js class OperationSavDetails extends Component { constructor(props) { super(props); this.state = { statusUpdateDropDownOpen: false, statusUpdateDropDownValue: "Mettre à jour le status de l'opération SAV" }; this.changeStatusUpdateDropDownValue = this.changeStatusUpdateDropDownValue.bind( this ); this.toggleStatusUpdateDropDown = this.toggleStatusUpdateDropDown.bind( this ); } changeStatusUpdateDropDownValue(e) { console.log("e.currentTarget.textContent"); console.log(e