使用 React.js 在数组中查找和渲染对象
在 React 中查找数组中的对象:
-
在数组上调用
find()
方法,并传递给它一个函数。 - 该函数应返回对相关属性的相等检查。
-
find()
方法返回数组中满足条件的第一个值。
const App = () => {
const arr = [
{id: 1, country: 'Austria'},
{id: 2, country: 'Germany'},
{id: 3, country: 'Austria'},
];
// ✅ Find first object that matches condition
const found = arr.find(obj => {
return obj.id === 1;
});
// 👇️ {id: 1, country: 'Austria'}
console.log(found);
// -----------------------
// ✅ Find multiple objects that satisfy condition
const filtered = arr.filter(obj => {
return obj.country === 'Austria';
});
// 👇️ [{id: 1, country: 'Austria'}, {id: 3, country: 'Austria'}]
console.log(filtered);
return (
<div>
{/* 👇️ render single object */}
{found && (
<div>
<h2>id: {found.id}</h2>
<h2>country: {found.country}</h2>
</div>
)}
<hr />
{/* 👇️ render array of objects */}
{filtered.map(obj => {
return (
<div key={obj.id}>
<h2>id: {obj.id}</h2>
<h2>country: {obj.country}</h2>
</div>
);
})}
</div>
);
};
export default App;
代码示例展示了如何:
- 在数组中查找第一个符合条件的对象
- 查找满足条件的多个对象
我们传递给 Array.find()
方法的函数会针对数组中的每个元素(对象)进行调用,直到它返回真值或遍历整个数组。
在每次迭代中,我们检查对象的 id 属性是否等于 1。
如果条件返回真,则
find()
方法返回相应的对象并短路。
当我们只需要获取第一个符合特定条件的对象时,这非常方便。
没有浪费的迭代,因为一旦满足条件,
find()
方法就会短路并返回对象。
如果我们传递给 find 方法的回调函数从未返回真值,则 find 方法返回 undefined
。
const arr = [
{id: 1, country: 'Austria'},
{id: 2, country: 'Germany'},
{id: 3, country: 'Austria'},
];
const notFound = arr.find(obj => {
return obj.id === 123;
});
console.log(notFound); // 👉️ undefined
这就是我们使用逻辑 &&
运算符的原因 - 来检查找到的变量是否存储了真值。
使用 filter()
方法在 React 的数组中查找多个满足条件的对象。 filter()
方法接受一个函数作为参数,并返回一个仅包含满足条件的元素的数组。
const App = () => {
const arr = [
{id: 1, country: 'Austria'},
{id: 2, country: 'Germany'},
{id: 3, country: 'Austria'},
];
// ✅ Find multiple objects that satisfy condition
const filtered = arr.filter(obj => {
return obj.country === 'Austria';
});
// 👇️ [{id: 1, country: 'Austria'}, {id: 3, country: 'Austria'}]
console.log(filtered);
return (
<div>
{/* 👇️ render array of objects */}
{filtered.map(obj => {
return (
<div key={obj.id}>
<h2>id: {obj.id}</h2>
<h2>country: {obj.country}</h2>
</div>
);
})}
</div>
);
};
export default App;
我们传递给 Array.filter()
方法的函数会被数组中的每个元素调用。
如果该函数返回真值,则该元素将添加到
filter()
方法返回的数组中。
请注意
,无论条件满足多少次,过滤方法都会遍历整个数组。
这样,我们就可以从对象数组中获取满足条件的多个对象。
换句话说,我们过滤数组以仅包含满足条件的对象。
如果我们传递给 filter 方法的回调函数从不返回真值,则 filter 方法返回一个空数组。
我们可以使用 Array.map()
方法在我们的 React 组件中渲染对象数组。
相关文章
Node.js 与 React JS 的比较
发布时间:2023/03/27 浏览次数:137 分类:Node.js
-
本文比较和对比了两种编程语言,Node.js 和 React。React 和 Node.js 都是开源 JavaScript 库的示例。 这些库用于构建用户界面和服务器端应用程序。
在 TypeScript 中 React UseState 钩子类型
发布时间:2023/03/19 浏览次数:200 分类:TypeScript
-
本教程演示了如何在 TypeScript 中使用 React useState hook。
TypeScript 中的 React 事件类型
发布时间:2023/03/19 浏览次数:162 分类:TypeScript
-
本教程演示了如何在 TypeScript 中为 React 事件添加类型支持。
在 React 中循环遍历对象数组
发布时间:2023/03/18 浏览次数:124 分类:React
-
在 React 中循环对象数组: 使用 map() 方法迭代数组。 我们传递给 map() 的函数会为数组中的每个元素调用。 该方法返回一个新数组,其中包含传入函数的结果。 export default function App (
获取 React 中元素的类名
发布时间:2023/03/18 浏览次数:162 分类:React
-
在 React 中使用 event.target 获取元素的类名 获取元素的类名: 将元素上的 onClick 属性设置为事件处理函数。 访问元素的类名作为 event.currentTarget.className 。 export default function App () { cons
如何将 key 属性添加到 React 片段
发布时间:2023/03/18 浏览次数:152 分类:React
-
使用更详细的片段语法将 key 属性添加到 React 片段,例如 React.Fragment key={key} 。 更冗长的语法实现了相同的结果对元素列表进行分组,而不向 DOM 添加额外的节点。 import React from react
如何在 React 中删除事件监听器
发布时间:2023/03/15 浏览次数:203 分类:React
-
在 React 中删除事件监听器: 在 useEffect 挂钩中添加事件侦听器。 从 useEffect 挂钩返回一个函数。 当组件卸载时,使用 removeEventListener 方法移除事件监听器。 import {useRef, useEffect} from r
React 中在 map() 中使用条件跳出map
发布时间:2023/03/15 浏览次数:198 分类:React
-
React 中在 map() 中使用条件: 在数组上调用 map() 方法。 使用 if 条件,如果条件满足则显式返回。 否则返回不同的值或返回 null 以不呈现任何内容。 export default function App () { const arr =
在 React 中调用多个 onClick 函数
发布时间:2023/03/15 浏览次数:160 分类:React
-
在 React 中调用多个 onClick 函数: 在元素上设置 onClick 属性。 在事件处理函数中调用其他函数。 事件处理函数可以根据需要调用尽可能多的其他函数。 export default function App () { const s