React - clearing an input value after form submit

前端 未结 6 1226
粉色の甜心
粉色の甜心 2020-12-05 04:09

I\'m presented with a rather silly problem. I am in the process of creating my first React application and I have encountered a little issue, where I am not able to clear my

6条回答
  •  北海茫月
    2020-12-05 04:42

    In your onHandleSubmit function, set your state to {city: ''} again like this :

    this.setState({ city: '' });
    

提交回复
热议问题