【问题标题】:Dropdown onChange method unable to get the selected value in fluentui/react-northstar下拉 onChange 方法无法在 fluentui/react-northstar 中获取所选值
【发布时间】:2021-09-22 17:51:11
【问题描述】:

我正在使用 fluentui/react-northstar 库。我正在使用下拉组件并使用 onChange 处理程序。我无法从 onChangeHandler 方法的下拉列表中获取当前选定的值。

我的代码sn-p

import React from "react";
import { Flex, Header, Dropdown } from '@fluentui/react-northstar';

class DropdownComponent extends React.Component {
    constructor(props) {
        super(props);
        this.state = {
            inputItems: [
                'Robert Tolbert',
                'Wanda Howard',
                'Tim Deboer',
                'Amanda Brady',
                'Ashley McCarthy',
                'Cameron Evans',
                'Carlos Slattery',
                'Carole Poland',
                'Robin Counts',
            ]
        }
        this.onChangeHandler = this.onChangeHandler.bind(this);
    }
    onChangeHandler(e){
        //e => null
        //Need to get the selected value from dropdown
    }
    render() {
      return (
         <section>
            <Flex column gap="gap.small">
                <Header as="h4" content="Object" />
                <Dropdown
                     items={this.state.inputItems}
                     placeholder="Select your object"
                     checkable 
                     onChange={(e) => this.onChangeHandler(e)}
                 />
            </Flex>
        </section>
      );
    }
}

export default DropdownComponent;

谁能提供有关如何从 onChange 处理程序中获取所选值的详细信息。

【问题讨论】:

    标签: reactjs fluentui-react


    【解决方案1】:

    根据@fluentui/react-northstar@0.59.0documentation,从下拉列表中选择的值正在回调函数的第二个参数中传递或提供。

    即,通过以下更改,它将起作用

          onChangeHandler(_, event) {
              console.log("selected value from dropdown ", event.value);
          }
    

          <Dropdown
             items={this.state.inputItems}
             placeholder="Select your object"
             checkable
             onChange={this.onChangeHandler}
          />
    

    工作示例可以在这里找到,https://codesandbox.io/embed/lingering-sound-q2rw2?fontsize=14&hidenavigation=1&theme=dark

    【讨论】:

    • 谢谢你,如果不是你的回答,我会整天扯头发,你能参考文档中的说明吗,所以我知道在哪里可以找到它下一次?
    猜你喜欢
    • 2021-03-31
    • 2022-08-09
    • 2020-12-10
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-09-06
    • 2021-06-28
    相关资源
    最近更新 更多