作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个类组件渲染多个子组件:
// inside my parent component
const allElements = arrayWithElements.map(elem => (
<ChildElement title={elem.title} />
));
// my child component
const ChildElement = ({title}) => {
// log the title to the console
const doSomething = () => {
console.log(title);
}
return (
<button type="button" onClick={doSomething}>{title}</button>
);
}
我的问题是,当我向数组“allElements”添加一个新元素时,我想仅针对新添加的元素执行一次函数“doSomething”。我认为使用 refs 可能是一个解决方案,但是 refs 不允许与函数组件结合使用,那么我可以实现这一点吗?
最佳答案
访问您 child 的方法是反模式。要实现所描述的效果,您可以将每个 ChildComponent
配置为在 mount
const ChildElement = ({title}) => {
//logging once in mount
useEffect(() => console.log(title), [])
const doSomething = () => {
console.log(title);
}
return (
<button type="button" onClick={doSomething}>{title}</button>
);
}
关于javascript - react : How to call function of new added child component?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57789394/
我是一名优秀的程序员,十分优秀!