使用react-bootstrap元素的`ref`问题

时间:2015-07-08 08:44:23

标签: javascript twitter-bootstrap reactjs react-bootstrap

我正在尝试使用ref {' roleType'来获取DropdownButton选择的获取值,但无论我尝试了什么都失败了。

    <DropdownButton ref='roleType' bsStyle='link' title='Role' key='1'  bsSize='xsmall'>
      {_items}
    </DropdownButton>

我尝试了以下内容:

 React.findDOMNode(this.refs.roleType)
 this.refs.roleType.getDOMNode()

注意:我不确定它是否重要。 DropdownButton位于Panel内,位于section的{​​{1}}内。

1 个答案:

答案 0 :(得分:2)

docs所示,您应该使用onSelect的{​​{1}}道具。

DropdownButton

这是一个工作小提琴:

https://jsfiddle.net/gadr/azm159g4/2/