How to set state with a dynamic key name?

Technology CommunityCategory: ReactHow to set state with a dynamic key name?
VietMX Staff asked 3 years ago

If you are using ES6 or the Babel transpiler to transform your JSX code then you can accomplish this with computed property names

handleInputChange : function (event) {
    this.setState({ [event.target.id]: event.target.value });
}