E.g coconut
有效但coconut oil
没有,即使两者都返回相似的结果。
奇怪的是,使用React chrome开发人员工具,我可以看到选项设置在Select的状态,但它们只是没有出现。此外,如果我单击react-select,然后单击它,则会显示结果(在firefox和chrome中测试)。这是我的代码和一些屏幕截图来说明
<Select.Async name={ this.generateName('ingredient_id')}
loadOptions={this.getIngredients}
className="admin-meal-ingredient-search-select"
autoload={false}
cache={false}
multi={false}
value={this.props.ingredient}
onChange={this.props.handleIngredientChange}
placeholder="Search for ingredient" />
出现
答案 0 :(得分:1)
我找到了一个解决方案,那就是设置filterOptions= {false}
答案 1 :(得分:0)
我正在使用"react-select": "^3.0.4",
,不得不添加filterOption={false}
道具。