import React from 'react';
import { Input, Select, Button, Icon } from 'antd';
class Example extends React.Component {
handleClick() {
this.input.value = 'This is TextBox';
}
render() {
return (
<div>
{/* <TextBox ref={ref => this.textBox = ref}/> */}
<Input ref={ref => this.input = ref} />
<Button onClick={this.handleClick.bind(this)}>搜索</Button>
</div>
);
}
}
export default Example;
如果是用 ant-design 的 Input 和 Button,上面的 handleClick 函数不能改变 Input 的值。
但是如果用的原生的 input 上面的函数是可以改变的。
请问其他的组件标签如何获取到 ant-design 的 Input?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…