You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1010 B
59 lines
1010 B
8 years ago
|
---
|
||
|
order: 3
|
||
|
title:
|
||
|
zh-CN: 自定义输入组件
|
||
|
en-US: Customize Input Component
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
自定义输入组件。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Customize Input Component
|
||
|
|
||
|
````jsx
|
||
|
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,
|
||
|
],
|
||
|
});
|
||
|
},
|
||
|
handleKeyPress(ev) {
|
||
|
console.log('handleKeyPress', ev);
|
||
|
},
|
||
|
render() {
|
||
|
const { dataSource } = this.state;
|
||
|
return (
|
||
|
<AutoComplete
|
||
|
dataSource={dataSource}
|
||
|
style={{ width: 200 }}
|
||
|
onSelect={onSelect}
|
||
|
onChange={this.handleChange}
|
||
|
placeholder="input here"
|
||
|
>
|
||
|
<textarea onKeyPress={this.handleKeyPress} />
|
||
|
</AutoComplete>
|
||
|
);
|
||
|
},
|
||
|
});
|
||
|
|
||
|
ReactDOM.render(<Complete />, mountNode);
|
||
|
````
|