我有一个 React 组件,它接收一个具有动态生成一些子组件的属性的对象。在生成这些新组件时,我需要为每个组件创建一个 ref,但React.createRef()
返回current
为null
.
这是我所做的:
const source = {
component1: {
name: 'Component 1',
active: true
},
component2: {
name: 'Component 2',
active: true
},
component3: {
name: 'Component 3',
active: false
}
}
那么这是主要的组成部分:
function MyComp(props) {
const {source} = props;
const refs = {};
function makeComps() {
const newComps = [];
Object.keys(source).forEach(x => {
const myRef = React.createRef();
refs[x] = myRef;
newComps.push(
<div ref={myRef}>
<div>Name</div>
<div>{source[x].name}</div>
<div>Active</div>
<div>{source[x].active ? 'Yes' : 'No'}</div>
</div>);
});
return newComps;
}
return (
<>
<strong>{'Brand new components'}</strong>
{source && makeComps()}
{!source && <div>Nothing new</div>}
</>
);
}
然后,当我尝试访问refs
它时,它会返回:
{
component1: {current: null},
component2: {current: null},
component3: {current: null}
}
我需要这些参考来window.scrollTo
在某些情况下做出决定。根据 React 官方文档,我没有做任何奇怪的事情。我也尝试过React.useRef()
,但没有。
这是我如何达到这个参考:
const myRef = refs.component3;
window.scrollTo({ behavior: 'smooth', top: myRef.current.offsetTop });
我该如何解决这个问题?我在这里想念什么?