如何将输入集中在父组件的子组件上?
How to focus input on a child component from parent?
我正在使用 React.forwardRef
在我的子组件上设置 ref
,如下所示:
const Input = React.forwardRef(
({ value, onChange, onKeyPress, placeholder, type, label, ref }) => (
<div style={{ display: "flex", flexDirection: "column" }}>
<input
ref={ref}
style={{
borderRadius: `${scale.s1}rem`,
border: `1px solid ${color.lightGrey}`,
padding: `${scale.s3}rem`,
marginBottom: `${scale.s3}rem`
}}
value={value}
onChange={onChange}
onKeyPress={onKeyPress}
placeholder={placeholder ? placeholder : "Type something..."}
type={type ? type : "text"}
/>
</div>
)
);
在父级中我使用 const ref = React.createRef()
然后调用它:
onClick = () => {
this.setState({ showOther: true });
console.log(this.ref, "ref");
this.ref.focus();
};
render() {
return (
<div className="App">
<button onClick={this.onClick}>Click me</button>
<Input
ref={ref}
value={this.state.value}
onChange={this.handleChange}
onKeyPress={this.handleKeyPress}
placeholder="Type something..."
/>
</div>
);
}
我从控制台得到的是这样的:
Object {current: null}
current: null
"ref"
我的问题:
- 为什么这个是空的?
- 如何聚焦输入?
根据您的沙箱,您使用 class 组件之外的 ref
而不是 this.ref
。只需将其从
更改为
<Input
ref={ref}
/>
进入这个
<Input
ref={this.ref}
/>
里面的onClick
函数是这样的
onClick = () => {
this.setState({ showOther: true });
console.log(this.ref, "ref");
this.ref.current.focus(); // change it
};
这是工作 codesandbox,享受吧!
我正在使用 React.forwardRef
在我的子组件上设置 ref
,如下所示:
const Input = React.forwardRef(
({ value, onChange, onKeyPress, placeholder, type, label, ref }) => (
<div style={{ display: "flex", flexDirection: "column" }}>
<input
ref={ref}
style={{
borderRadius: `${scale.s1}rem`,
border: `1px solid ${color.lightGrey}`,
padding: `${scale.s3}rem`,
marginBottom: `${scale.s3}rem`
}}
value={value}
onChange={onChange}
onKeyPress={onKeyPress}
placeholder={placeholder ? placeholder : "Type something..."}
type={type ? type : "text"}
/>
</div>
)
);
在父级中我使用 const ref = React.createRef()
然后调用它:
onClick = () => {
this.setState({ showOther: true });
console.log(this.ref, "ref");
this.ref.focus();
};
render() {
return (
<div className="App">
<button onClick={this.onClick}>Click me</button>
<Input
ref={ref}
value={this.state.value}
onChange={this.handleChange}
onKeyPress={this.handleKeyPress}
placeholder="Type something..."
/>
</div>
);
}
我从控制台得到的是这样的:
Object {current: null}
current: null
"ref"
我的问题:
- 为什么这个是空的?
- 如何聚焦输入?
根据您的沙箱,您使用 class 组件之外的 ref
而不是 this.ref
。只需将其从
<Input
ref={ref}
/>
进入这个
<Input
ref={this.ref}
/>
里面的onClick
函数是这样的
onClick = () => {
this.setState({ showOther: true });
console.log(this.ref, "ref");
this.ref.current.focus(); // change it
};
这是工作 codesandbox,享受吧!