Reactjs如何在map函数中使用ref?

IT技术 css reactjs ref
2021-04-26 17:06:57

我正在映射一个数组,并为每个项目显示一个带有文本的按钮。假设我希望在单击按钮时,下方的文本将其颜色更改为红色。如何定位按钮的兄弟?我尝试使用 ref 但由于它是映射的 jsx,因此只会声明最后一个 ref 元素。

这是我的代码:

class Exams extends React.Component {
    constructor(props) {
        super()
        this.accordionContent = null;
    }
    state = {
        examsNames: null, // fetched from a server
    }
    accordionToggle = () => {
        this.accordionContent.style.color = 'red'
    }
    render() {
        return (
            <div className="container">
                {this.state.examsNames && this.state.examsNames.map((inst, key) => (
                    <React.Fragment key={key}>
                        <button onClick={this.accordionToggle} className="inst-link"></button>
                        <div ref={accordionContent => this.accordionContent = accordionContent} className="accordionContent">
                            <p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Aperiam, neque.</p>
                        </div>    
                    </React.Fragment>
                ))}
            </div>
        )
    }
}


export default Exams;

正如所解释的,结果是每次单击按钮时,附加到最后一个按钮的段落将成为目标。

提前致谢

4个回答

初始化this.accordionContent为数组

constructor(props) {
    super()
    this.accordionContent =[];
}

ref像这样设置

<div ref={accordionContent => this.accordionContent[key] = accordionContent} className="accordionContent">

这是基于您上面的代码的我的工作代码笔示例

链接示例是“实际”手风琴,即显示和隐藏相邻内容。

(请参阅下面的代码片段以变为红色)

https://codepen.io/PapaCodio/pen/XwxmvK?editors=0010


代码片段

初始化引用数组:

constructor(props) {
    super();
    this.accordionContent = [];
}

使用键将 ref 添加到引用数组:

<div ref={ref => (this.accordionContent[key] = ref)} >

通过 onClick 将键传递给切换函数

 <button onClick={() => this.accordionToggle(key)} >

最后引用切换功能内的键

accordionToggle = key => {
    this.accordionContent[key].style.color = 'red'
};

我找到了一种不使用 ref 的方法,通过使用地图的 key 属性:

 accordionToggle = (key) => {
        console.log(key)
        var a = document.getElementsByClassName('accordionContent')
        a[key].style.color = 'red'
    }

我不确定像这样访问 dom 是否一样好,而不是使用 refs 直接定位元素。

在下面的示例中,我使用了一个refs数组,初始化 using useRef,用于跨重新渲染的持久性,然后填充第一次<Wrapper>渲染,从那时起,在mapusing 中创建的所有 refsReact.createRef()将被缓存在其中refs并准备好随时使用<Wrapper>重新渲染。

每个refrefs数组的)动态都被分配为每个子节点的props:

const Wrapper = ({children}) => {
    const refs = React.useRef([]);

    // as the refs are assigned with `ref`, set each with a color "red"
    React.useEffect(() => {
      refs.current.map(ref => { 
        // no support here for optional chaining: ref?.current?.style.color
        if(ref.current) ref.current.style.color = 'red'
      })
    }, [refs]);

    // iterate the children and create a ref inide the "refs" array,
    // if one was not already added for this child's index.
    // use "cloneElement" to pass that ref to the children
    const withProps = React.Children.map(children, (child, i) => {
        // no support here for ?? instead of ||
        refs.current[i] = refs.current[i] || React.createRef();
        return React.cloneElement(child, {ref: refs.current[i] })
    });

    // no support for <> instead of useless `div` wrapper
    return <div>{withProps}</div>
};

ReactDOM.render(<Wrapper>
  <button>1</button>
  <button>2</button>
  <button>3</button>
</Wrapper>, document.body)
<script crossorigin src="https://unpkg.com/react@17/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>