我必须创建一些动态引用,以便将焦点放在自定义组件中包含的Input
上。
当前,这是渲染元素的方式:
const countRow = denom => {
this[`${denom.id}-ref`] = React.createRef();
return (
<CountRow
ref={this[`${denom.id}-ref`]}
id={`${denom.name.singular.toLowerCase()}-${denom.id}`}
tenderValue={denom.value}
label={denom.denomination.label}
onChange={(e, value) => this.handleBillsOnChange(e, denom)}
onEnter={() => this.onEnter(denom)}
/>
}
{itterableArray.map(item => countRow(item)}
在我的onEnterFunction
中,我试图从一个<CountRow />
移到下一个。
该函数的结尾:
onEnter = denom => {
//some stuff that doesn't matter
this[`${denom.id}-ref`].focus()
}
onEnter
函数的最后一行一直在爆炸。说:
TypeError: _this["".concat(...)].focus is not a function
有人可以为我选择特定<CountRow />
的焦点时提供指导吗?
答案 0 :(得分:1)
示例
const countRow = denom => {
let ref=React.createRef();
let onEnter = () => {
ref.current.focus();
}
//setTimeout(onEnter,3000)
return (
<CountRow
ref={ref}
// id={`${denom.name.singular.toLowerCase()}-${denom.id}`}
// tenderValue={denom.value}
// label={denom.denomination.label}
// onChange={(e, value) => this.handleBillsOnChange(e, denom)}
onEnter={onEnter}
/>)
};
class CountRow extends React.Component {
constructor(props) {
super(props);
this.myRef=React.createRef();
this.focus=()=>this.myRef.current.focus();
}
render() {
return <input type="text" ref={this.myRef}/>
}
}