在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}
/>
如果创建这样的函数该怎么办
handleDelete = () => {
this.setState({ tags: [] })
}