Looping through an array of objects in React
Looping over an array of objects in React:
-
Use
map()
the method to iterate over an array. -
The function we pass to
map()
is called for each element in the array. - This method returns a new array containing the results of the function passed in.
export default function App() {
const employees = [
{id: 1, name: 'Alice', country: 'Austria'},
{id: 2, name: 'Jiyik', country: 'China'},
{id: 3, name: 'Carl', country: 'Canada'},
{id: 4, name: 'Dean', country: 'Denmark'},
{id: 5, name: 'Ethan', country: 'Egypt'},
];
return (
<div>
{employees.map(employee => {
return (
<div key={employee.id}>
<h2>name: {employee.name}</h2>
<h2>country: {employee.country}</h2>
<hr />
</div>
);
})}
</div>
);
}
The function we pass to Array.map
the method is called for each element in the array.
In each iteration, we set the key attribute of the outermost element to a unique value and render the object's value.
Destructuring Object Properties
We can also destructure the properties of an object to make our code easier to read.
export default function App() {
const employees = [
{id: 1, name: 'Alice', country: 'Austria'},
{id: 2, name: 'Jiyik', country: 'China'},
{id: 3, name: 'Carl', country: 'Canada'},
{id: 4, name: 'Dean', country: 'Denmark'},
{id: 5, name: 'Ethan', country: 'Egypt'},
];
return (
<div>
{employees.map(({id, name, country}) => {
return (
<div key={id}>
<h2>name: {name}</h2>
<h2>country: {country}</h2>
<hr />
</div>
);
})}
</div>
);
}
We destructure the arguments of the object parameter so we don't have to access every property on the object.
Alternatively, we can use Array.forEach
the method.
Using forEach() to iterate over an array of objects
This is a three-step process:
-
Use
forEach()
the method to iterate over an array. - Declare an empty array to store JSX elements.
- On each iteration, push the object's JSX into the array.
export default function App() {
const employees = [
{id: 1, name: 'Alice', country: 'Austria'},
{id: 2, name: 'Jiyik', country: 'China'},
{id: 3, name: 'Carl', country: 'Canada'},
{id: 4, name: 'Dean', country: 'Denmark'},
{id: 5, name: 'Ethan', country: 'Egypt'},
];
const results = [];
employees.forEach(employee => {
results.push(
<div key={employee.id}>
<h2>name: {employee.name}</h2>
<h2>country: {employee.country}</h2>
<hr />
</div>,
);
});
return (
<div>
{results}
</div>
);
}
This example achieves the same result.
The function we pass to
forEach()
the method is called for each element (object) in the array.
Instead of rendering the object's values directly, we push the JSX markup for each object into the results array.
The final step is to render the resulting array.
Using for...of to iterate over an array of objects
We can also use for...of
loop to iterate over an array of objects.
export default function App() {
const employees = [
{id: 1, name: 'Alice', country: 'Austria'},
{id: 2, name: 'Jiyik', country: 'China'},
{id: 3, name: 'Carl', country: 'Canada'},
{id: 4, name: 'Dean', country: 'Denmark'},
{id: 5, name: 'Ethan', country: 'Egypt'},
];
const results = [];
for (const employee of employees) {
results.push(
<div key={employee.id}>
<h2>name: {employee.name}</h2>
<h2>country: {employee.country}</h2>
<hr />
</div>,
);
}
return (
<div>
{results}
</div>
);
}
for...of
Loops can also be used to iterate over arrays of objects.
When we have to
break
exit the loop prematurely using keyword, we can usefor...of
instead offorEach()
method.
break
The keyword cannot forEach()
be used in methods but for...of
is supported in loops.
For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.
Related Articles
Using onChange event in React
Publish Date:2025/03/03 Views:148 Category:React
-
onChange 是 React 中最常见的输入事件之一。本文将帮助你了解它的工作原理。
Checkbox onChange in React
Publish Date:2025/03/03 Views:73 Category:React
-
本教程演示了如何从 React 中 onChange 事件的复选框发送值。
onDoubleClick in React
Publish Date:2025/03/03 Views:128 Category:React
-
本教程演示了如何在 React 中使用 onDoubleClick。
Show element or text on hover in React
Publish Date:2025/03/03 Views:186 Category:React
-
在 React 中悬停时显示元素或文本: 在元素上设置 onMouseOver 和 onMouseOut 属性。 跟踪用户是否将鼠标悬停在状态变量中的元素上。 根据状态变量有条件地渲染另一个元素。 import {useStat
Scroll to top of page in React.js
Publish Date:2025/03/03 Views:182 Category:React
-
在 React 中使用 window.scrollTo() 方法滚动到页面顶部,例如 window.scrollTo(0, 0) 。 window 对象上的 scrollTo 方法滚动到文档中的一组特定坐标。 import {useEffect} from react ; export default function App (
Applying global CSS styles in React applications
Publish Date:2025/03/03 Views:145 Category:React
-
要在 React 应用程序中应用全局 CSS 样式,请将 CSS 写入扩展名为 .css 的文件中,并将其导入 index.js 文件中。 全局 CSS 应该在 index.js 中导入,以确保它被加载到你的 React 应用程序的所有
Passing events and parameters to onClick in React
Publish Date:2025/03/03 Views:63 Category:React
-
在 React 中传递事件和参数 onClick: 将内联函数传递给元素的 onClick 属性。 该函数应获取事件对象并调用 handleClick 。 将事件和参数传递给 handleClick 。 const App = () = { const handleClick = ( e
How to remove event listeners in React
Publish Date:2025/03/03 Views:194 Category:React
-
在 React 中删除事件监听器: 在 useEffect 挂钩中添加事件侦听器。 从 useEffect 挂钩返回一个函数。 当组件卸载时,使用 removeEventListener 方法移除事件监听器。 import {useRef, useEffect} from r
Using conditions to jump out of a map in map() in React
Publish Date:2025/03/03 Views:147 Category:React
-
React 中在 map() 中使用条件: 在数组上调用 map() 方法。 使用 if 条件,如果条件满足则显式返回。 否则返回不同的值或返回 null 以不呈现任何内容。 export default function App () { const arr =