2017-01-13 21:19:23 +08:00
|
|
|
---
|
|
|
|
order: 3
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义输入组件
|
|
|
|
en-US: Customize Input Component
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
自定义输入组件。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
Customize Input Component
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2017-07-12 21:43:06 +08:00
|
|
|
import { AutoComplete, Input } from 'antd';
|
2018-06-27 15:55:04 +08:00
|
|
|
|
2017-07-12 21:43:06 +08:00
|
|
|
const { TextArea } = Input;
|
2017-01-13 21:19:23 +08:00
|
|
|
|
|
|
|
function onSelect(value) {
|
|
|
|
console.log('onSelect', value);
|
|
|
|
}
|
|
|
|
|
2017-02-19 20:12:41 +08:00
|
|
|
class Complete extends React.Component {
|
|
|
|
state = {
|
|
|
|
dataSource: [],
|
|
|
|
}
|
|
|
|
|
2017-04-13 11:11:24 +08:00
|
|
|
handleSearch = (value) => {
|
2017-01-13 21:19:23 +08:00
|
|
|
this.setState({
|
|
|
|
dataSource: !value ? [] : [
|
|
|
|
value,
|
|
|
|
value + value,
|
|
|
|
value + value + value,
|
|
|
|
],
|
|
|
|
});
|
2017-02-19 20:12:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
handleKeyPress = (ev) => {
|
2017-01-13 21:19:23 +08:00
|
|
|
console.log('handleKeyPress', ev);
|
2017-02-19 20:12:41 +08:00
|
|
|
}
|
|
|
|
|
2017-01-13 21:19:23 +08:00
|
|
|
render() {
|
|
|
|
const { dataSource } = this.state;
|
|
|
|
return (
|
|
|
|
<AutoComplete
|
|
|
|
dataSource={dataSource}
|
2017-10-08 15:22:24 +08:00
|
|
|
style={{ width: 200 }}
|
2017-01-13 21:19:23 +08:00
|
|
|
onSelect={onSelect}
|
2017-04-13 11:11:24 +08:00
|
|
|
onSearch={this.handleSearch}
|
2017-01-13 21:19:23 +08:00
|
|
|
>
|
2017-10-08 15:22:24 +08:00
|
|
|
<TextArea
|
|
|
|
placeholder="input here"
|
|
|
|
className="custom"
|
|
|
|
style={{ height: 50 }}
|
|
|
|
onKeyPress={this.handleKeyPress}
|
|
|
|
/>
|
2017-01-13 21:19:23 +08:00
|
|
|
</AutoComplete>
|
|
|
|
);
|
2017-02-19 20:12:41 +08:00
|
|
|
}
|
|
|
|
}
|
2017-01-13 21:19:23 +08:00
|
|
|
|
|
|
|
ReactDOM.render(<Complete />, mountNode);
|
|
|
|
````
|