ant-design/components/select/demo/combobox.md

60 lines
1.3 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
2016-09-30 10:34:11 +08:00
title:
2016-07-10 08:55:43 +08:00
zh-CN: 智能提示
en-US: Automatic completion
2016-03-31 09:40:55 +08:00
---
2015-06-16 19:59:07 +08:00
2016-07-10 08:55:43 +08:00
## zh-CN
2015-07-23 11:13:20 +08:00
输入框自动完成功能,下面是一个账号注册表单的例子。
2015-06-16 19:59:07 +08:00
2016-09-30 10:34:11 +08:00
推荐使用 [AutoComplete](/components/auto-complete/) 组件。
2016-07-25 17:46:45 +08:00
2016-07-10 08:55:43 +08:00
## en-US
2016-09-30 10:34:11 +08:00
Automatic completion of select input.
2016-07-10 08:55:43 +08:00
2016-09-30 10:34:11 +08:00
Using the [AutoComplete](/components/auto-complete/) component is strongly recommended instead as it is more flexible and capable.
2016-07-25 17:46:45 +08:00
2017-01-19 15:19:03 +08:00
````__react
import { Select } from 'antd';
const Option = Select.Option;
2015-06-16 19:59:07 +08:00
const Test = React.createClass({
2015-06-16 19:59:07 +08:00
getInitialState() {
return {
2016-04-27 18:07:48 +08:00
options: [],
2015-06-16 19:59:07 +08:00
};
},
handleChange(value) {
let options;
2015-07-23 11:13:20 +08:00
if (!value || value.indexOf('@') >= 0) {
2015-06-18 12:02:38 +08:00
options = [];
} else {
options = ['gmail.com', '163.com', 'qq.com'].map((domain) => {
const email = `${value}@${domain}`;
2015-07-08 22:07:15 +08:00
return <Option key={email}>{email}</Option>;
2015-06-18 11:57:31 +08:00
});
}
this.setState({ options });
2015-06-16 19:59:07 +08:00
},
render() {
// filterOption needs to be falseas the value is dynamically generated
return (
<Select combobox
style={{ width: 200 }}
onChange={this.handleChange}
filterOption={false}
placeholder="Enter the account name"
>
{this.state.options}
</Select>
);
2016-05-11 09:32:33 +08:00
},
2015-06-16 19:59:07 +08:00
});
ReactDOM.render(<Test />, mountNode);
2015-06-16 19:59:07 +08:00
````