如何清除反应标签输入字段?

问题描述 投票:0回答:1

react-tag-autocomplete lib中,需要添加手动建议。因此,我为建议列表创建了一个名为ReactTagsSuggestions的新组件。

如何清除ReactTags的输入字段

<ReactTags
  id="form-share"
  tags={selectedTags}
  // suggestions={tagSuggestions}
  handleAddition={this.props.handleAddition}
  handleDelete={this.props.handleDelete}
  placeholder={this.props.tags.length ? '' : tr('Share with users, groups, and channels')}
  tagComponent={this.selectedTags}
  handleInputChange={this.handleInputChange}
  autofocus={false}
/>
<ReactTagsSuggestions
  suggestionList={tagSuggestions}
  showSuggestions={tagSuggestions.length > 0}
  checkToShare={this.props.checkToShare}
/>
javascript reactjs components
1个回答
0
投票

如果创建这样的函数该怎么办

handleDelete = () => {
  this.setState({ tags: [] })
}
© www.soinside.com 2019 - 2024. All rights reserved.