鉴于以下数据,如何获取鸟类名称并将其推送(使用添加按钮)到新数组以显示在另一个div中(使用react es6)?所以基本上我希望用户从语义下拉列表中单击一个鸟并将其显示在不同的div中,如下所示。这可能很简单,但是当我使用语义元素时,我似乎无法找到方法。我需要使用onChange
吗?
我需要在我正在导出的类中做出反应(反应)(只是没有显示类/构造函数/状态定义)
<div>
<p>How can i display 'Bird_Name' here?<p>
</div>
addClick = () => {
}
const {
Button,
Container,
Divider,
Dropdown,
Header,
Message,
Segment,
} = semanticUIReact
const birds = [
{
"value": "001",
"Bird_Name": "Eurasian Collared-Dove"
},
{
"value": "002",
"Bird_Name": "Bald Eagle"
},
{
"value": "003",
"Bird_Name": "Cooper's Hawk"
},
];
const options = birds.map(({ ID, Bird_Name }) => ({ value: ID, text: Bird_Name }))
const App = () => (
<Container>
<Divider hidden />
<Header as='h1'>Semantic-UI-React</Header>
<Dropdown
placeholder='Select...'
selection
search
options={options}
renderLabel={({ Bird_Name }) => 1}
/>
<button className="ui primary button add" onClick={this.addClick}>Add</button>
</Container>
)
// ----------------------------------------
// Render to DOM
// ----------------------------------------
const mountNode = document.createElement('div')
document.body.appendChild(mountNode)
ReactDOM.render(<App />, mountNode)
&#13;
答案 0 :(得分:5)
所以,您基本上想要的是onChange函数,该函数将显示
<Dropdown
placeholder='Select...'
selection
search
options={options}
renderLabel={({ Bird_Name }) => 1}
onChange={this.getBird}
/>
并创建一个getBird函数
getBird = (event, {value}) => {
console.log(value);
let bird_name = e.target.textContent;
console.log(bird_name);
}
getBird函数中的value和text变量基本上是从下拉列表中选择的鸟的值和bird_name。