使用 JavaScript 检查 Map 是否具有对象键
要检查 Map 是否具有对象键,请调用 has()
方法,将对象的引用传递给它,例如 map.has(obj)
。 如果对象键包含在 Map 中,则 has()
方法将返回 true,否则返回 false。
const obj = {country: 'Chile'};
const map1 = new Map([[obj, {city: 'Santiago'}]]);
// ✅ ( BEST ) - With reference
console.log(map1.has(obj)); // 👉️ true
console.log(map1.get(obj)); // 👉️ {city: 'Santiago'}
// -------
let hasKey = false;
for (const [key, value] of map1) {
if (typeof key === 'object' && key.country === 'Chile') {
hasKey = true;
break;
}
}
console.log(hasKey); // 👉️ true
我们使用 Map.has 方法来检查 Map 是否具有对象键。
请注意
,我们通过引用has()
方法传递了对象。 如果我们传递包含相同键/值对的对象,这将不起作用,因为它会存储在内存中的不同位置。
const obj = {country: 'Chile'};
const map1 = new Map([[obj, {city: 'Santiago'}]]);
console.log(map1.has({country: 'Chile'})); // 👉️ false
JavaScript 对象通过引用进行比较,而不是通过它们的内容进行比较。
// 👇️️ false
console.log({country: 'Chile'} === {country: 'Chile'});
// 👇️️ true
console.log(obj === obj);
如果我们没有对该对象的引用,请使用 for...of
循环遍历 Map 并检查对象键是否存在。
const map1 = new Map([[{country: 'Chile'}, {city: 'Santiago'}]]);
let hasKey = false;
for (const [key, value] of map1) {
if (typeof key === 'object' && key.country === 'Chile') {
hasKey = true;
break;
}
}
console.log(hasKey); // 👉️ true
for...of
循环遍历数组、字符串和映射等可迭代对象。
在每次迭代中,我们检查当前键是否是一个对象并包含等于智利的国家/地区属性。
如果不需要,则不必解构值变量。
在确认对象键存在后,我们使用 break 关键字退出循环,避免不必要的工作。
相关文章
Do you understand JavaScript closures?
发布时间:2025/02/21 浏览次数:108 分类:JavaScript
-
The function of a closure can be inferred from its name, suggesting that it is related to the concept of scope. A closure itself is a core concept in JavaScript, and being a core concept, it is naturally also a difficult one.
Do you know about the hidden traps in variables in JavaScript?
发布时间:2025/02/21 浏览次数:178 分类:JavaScript
-
Whether you're just starting to learn JavaScript or have been using it for a long time, I believe you'll encounter some traps related to JavaScript variable scope. The goal is to identify these traps before you fall into them, in order to av
How much do you know about the Prototype Chain?
发布时间:2025/02/21 浏览次数:150 分类:JavaScript
-
The prototype chain can be considered one of the core features of JavaScript, and certainly one of its more challenging aspects. If you've learned other object-oriented programming languages, you may find it somewhat confusing when you start
如何在 JavaScript 中合并两个数组而不出现重复的情况
发布时间:2024/03/23 浏览次数:86 分类:JavaScript
-
本教程介绍了如何在 JavaScript 中合并两个数组,以及如何删除任何重复的数组。