使用React.js如何获取选中的选项文本?

15 浏览
0 Comments

使用React.js如何获取选中的选项文本?

我有一个选择列表组件来渲染我的选择列表:

我有一个在组件上创建选项的方法:

getOptions: function () {
    return this.props.renderProps.data.map(function (item) {
        return ;
    }.bind(this));
},

我的onChange方法可以正常使用值:

onChange: function(event) {
    var newValue = event.nativeEvent.target.value;
    this.props.renderProps.onSaveCare(newValue);
    this.setState({value: newValue});
    this.toggleEdit();
},

有没有办法可以获取选项文本?这样会给我undefined

event.nativeEvent.target.text; //undefined

0