如何从dataSourceConfig autocomple material-ui reactjs获取价值?

时间:2017-02-20 11:30:23

标签: reactjs material-ui

const dataSource3 = [
  {textKey: 'Some Text', valueKey: 'someFirstValue'},
  {textKey: 'Some Text', valueKey: 'someSecondValue'},
];
const dataSourceConfig = {
  text: 'textKey',
  value: 'valueKey',
};

<AutoComplete id="city" ref="city" dataSource={datatest} dataSourceConfig={dataSourceConfig}/>

如何获取valueKey?

this.refs.brand.refs.searchTextField.input.value

如果我使用该代码检索值,则只获取textKey而不是valueKey

0 个答案:

没有答案