2016-03-31 09:40:55 +08:00
|
|
|
|
---
|
|
|
|
|
order: 4
|
|
|
|
|
title: 智能提示
|
|
|
|
|
---
|
2015-06-16 19:59:07 +08:00
|
|
|
|
|
2015-07-23 11:13:20 +08:00
|
|
|
|
输入框自动完成功能,下面是一个账号注册表单的例子。
|
2015-06-16 19:59:07 +08:00
|
|
|
|
|
|
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
|
import { Select } from 'antd';
|
|
|
|
|
const Option = Select.Option;
|
2015-06-16 19:59:07 +08:00
|
|
|
|
|
2015-10-28 20:55:49 +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) {
|
2015-10-28 20:55:49 +08:00
|
|
|
|
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 {
|
2016-01-23 15:22:16 +08:00
|
|
|
|
options = ['gmail.com', '163.com', 'qq.com'].map((domain) => {
|
2016-02-17 18:04:42 +08:00
|
|
|
|
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
|
|
|
|
});
|
|
|
|
|
}
|
2016-01-23 15:22:16 +08:00
|
|
|
|
this.setState({ options });
|
2015-06-16 19:59:07 +08:00
|
|
|
|
},
|
|
|
|
|
render() {
|
2015-11-19 17:12:16 +08:00
|
|
|
|
// filterOption 需要设置为 false,数据是动态设置的
|
2016-01-07 16:29:12 +08:00
|
|
|
|
return (
|
|
|
|
|
<Select combobox
|
2016-01-27 16:44:50 +08:00
|
|
|
|
style={{ width: 200 }}
|
2016-01-08 14:41:05 +08:00
|
|
|
|
onChange={this.handleChange}
|
|
|
|
|
filterOption={false}
|
2016-02-24 18:21:07 +08:00
|
|
|
|
placeholder="请输入账户名">
|
2016-01-07 16:29:12 +08:00
|
|
|
|
{this.state.options}
|
|
|
|
|
</Select>
|
|
|
|
|
);
|
2016-05-11 09:32:33 +08:00
|
|
|
|
},
|
2015-06-16 19:59:07 +08:00
|
|
|
|
});
|
|
|
|
|
|
2015-12-29 12:08:58 +08:00
|
|
|
|
ReactDOM.render(<Test />, mountNode);
|
2015-06-16 19:59:07 +08:00
|
|
|
|
````
|