使用 JavaScript Map 时如何修复错误“.has 不是函数”?
Posted
技术标签:
【中文标题】使用 JavaScript Map 时如何修复错误“.has 不是函数”?【英文标题】:How do I fix the error '.has is not a function' when using JavaScript Map? 【发布时间】:2021-12-01 11:59:07 【问题描述】:我有以下代码尝试在 Map 中设置值:
class Trie
constructor ()
this.trie = new Map()
insert(word)
let current = this.trie
for (let alpha of word)
if (!current.has(alpha)) current.set(alpha, [])
current = current.get(alpha)
current.word = word
let trie = new Trie()
trie.insert('test')
console.log(trie.trie)
当我尝试运行它时,我收到错误 .has is not a function
。我在这里错过了什么?
【问题讨论】:
【参考方案1】:您将 current
重新分配给循环内的非 Map 值,因此在后续迭代中,current.has
将不起作用。听起来您需要将 []
改为 new Map
。
class Trie
constructor ()
this.trie = new Map()
insert(word)
let current = this.trie
for (let alpha of word)
if (!current.has(alpha)) current.set(alpha, new Map())
current = current.get(alpha)
current.word = word
let trie = new Trie()
trie.insert('test')
console.log([...trie.trie])
【讨论】:
非常感谢,我不敢相信我错过了以上是关于使用 JavaScript Map 时如何修复错误“.has 不是函数”?的主要内容,如果未能解决你的问题,请参考以下文章
尝试在 JavaScript 中使用 Gruber 的“改进的”URL 匹配正则表达式模式时,如何修复“无效组”错误?
如何修复 React Native 错误“jest-haste-map:Haste 模块命名冲突”?
Javascript,类型错误:Information.map 不是函数 ||如何使用.map?
如何修复 React 中的“TypeError:categories.map 不是函数”错误