在 Kendo React DropDownList 中未找到数据
Data not found in Kendo React DropDownList
我想弄清楚为什么我的 kendo 反应下拉列表没有显示任何数据
准确来说NO DATA FOUND.
下面是带有下拉列表配置的代码片段
<DropDownList
data={countryList}
defaultValue={"Please select country"}
onChange={handleCountryChange}
/>
还有内容哦countryList
当我做一个console.log(countryList)
0: "Afghanistan"
1: "Albania"
2: "Algeria"
3: "Andorra"
4: "Angola"
5: "Argentina"
6: "Armenia"
7: "Australia"
所有国家依此类推
任何帮助将不胜感激!
好的,我找到了解决方案:
在 DropDownList
中,您还必须包括:
- textFieled={"name"}
- value={"admincode"}
所以我可以恢复 textField
是您要在 DropDown 中显示的数据, value
是相应 textField
元素的值
我想弄清楚为什么我的 kendo 反应下拉列表没有显示任何数据
准确来说NO DATA FOUND.
下面是带有下拉列表配置的代码片段
<DropDownList
data={countryList}
defaultValue={"Please select country"}
onChange={handleCountryChange}
/>
还有内容哦countryList
当我做一个console.log(countryList)
0: "Afghanistan"
1: "Albania"
2: "Algeria"
3: "Andorra"
4: "Angola"
5: "Argentina"
6: "Armenia"
7: "Australia"
所有国家依此类推
任何帮助将不胜感激!
好的,我找到了解决方案:
在 DropDownList
中,您还必须包括:
- textFieled={"name"}
- value={"admincode"}
所以我可以恢复 textField
是您要在 DropDown 中显示的数据, value
是相应 textField
元素的值