mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 19:50:05 +08:00
930 B
930 B
order | title | ||||
---|---|---|---|---|---|
0 |
|
zh-CN
基本使用。通过 dataSource 设置自动完成的数据源
en-US
Basic Usage, set datasource of autocomplete with dataSource
property.
import { AutoComplete } from 'antd';
function onSelect(value) {
console.log('onSelect', value);
}
const Complete = React.createClass({
getInitialState() {
return {
dataSource: [],
};
},
handleChange(value) {
this.setState({
dataSource: !value ? [] : [
value,
value + value,
value + value + value,
],
});
},
render() {
const { dataSource } = this.state;
return (
<AutoComplete
dataSource={dataSource}
style={{ width: 200 }}
onSelect={onSelect}
onChange={this.handleChange}
placeholder="input here"
/>
);
},
});
ReactDOM.render(<Complete />, mountNode);