mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-21 04:48:02 +08:00
49 lines
1.0 KiB
Markdown
49 lines
1.0 KiB
Markdown
# 智能提示
|
||
|
||
- order: 4
|
||
|
||
输入框自动完成功能,下面是一个账号注册表单的例子。
|
||
|
||
---
|
||
|
||
|
||
````jsx
|
||
import { Select } from 'antd';
|
||
const Option = Select.Option;
|
||
|
||
const Test = React.createClass({
|
||
getInitialState() {
|
||
return {
|
||
options: []
|
||
};
|
||
},
|
||
handleChange(value) {
|
||
let options;
|
||
if (!value || value.indexOf('@') >= 0) {
|
||
options = [];
|
||
} else {
|
||
options = ['gmail.com', '163.com', 'qq.com'].map(function(domain) {
|
||
const email = value + '@' + domain;
|
||
return <Option key={email}>{email}</Option>;
|
||
});
|
||
}
|
||
this.setState({
|
||
options: options
|
||
});
|
||
},
|
||
render() {
|
||
// filterOption 需要设置为 false,数据是动态设置的
|
||
return <Select combobox
|
||
style={{width:200}}
|
||
onChange={this.handleChange}
|
||
filterOption={false}
|
||
searchPlaceholder="请输入账户名">
|
||
{this.state.options}
|
||
</Select>;
|
||
}
|
||
});
|
||
|
||
ReactDOM.render(<Test />, document.getElementById('components-select-demo-combobox'));
|
||
````
|
||
|