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