在React中,循環(huán)渲染組件可以通過使用數(shù)組的map方法來實(shí)現(xiàn)。具體步驟如下:
示例代碼如下:
import React from 'react';
const ComponentList = () => {
const data = [1, 2, 3, 4, 5];
return (
<div>
{data.map(item => (
<Component key={item} data={item} />
))}
</div>
);
};
const Component = ({ data }) => {
return <div>{data}</div>;
};
export default ComponentList;
在上面的示例中,ComponentList組件中使用map方法遍歷data數(shù)組,并返回Component組件的實(shí)例,將其存儲在新的數(shù)組中,最后將新數(shù)組中的組件實(shí)例渲染到頁面上。