“React сбросить ввод файла” Ответ

Очистить входной файл HTML React

e.target.value = null;
Blue Beetle

Как сбросить вход файла reactjs

<input onChange={this.onChange} onClick={e => (e.target.value = null)} type="file" />
Important Impala

React сбросить ввод файла

functionThatResetsTheFileInput() {
  let randomString = Math.random().toString(36);

  this.setState({
    theInputKey: randomString
  });
}

render() {
  return(
    <div>
      <input type="file"
             key={this.state.theInputKey || '' } />
      <button onClick={this.functionThatResetsTheFileInput()} />
    </div>
  )
}
Frail Fox

Ответы похожие на “React сбросить ввод файла”

Вопросы похожие на “React сбросить ввод файла”

Больше похожих ответов на “React сбросить ввод файла” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования