尝试访问小于1的键值,但似乎无法通过此Entries数组。上图是用户的React。代码:
var element = reaction.users[1].key console.log(element) //undefined
h7wcgrx31#
您必须使用Map.prototype.entries,因此解决方案将是:
var element = reaction.entries()[1][0]
t = new Map([["680","clientuser"],["272","user"]]); console.log([...t.entries()][1][0]) //0 is the key and 1 is the value
brccelvz2#
有了这个,它将工作,数据将是你的变量
Array.from(data)
2条答案
按热度按时间h7wcgrx31#
您必须使用Map.prototype.entries,因此解决方案将是:
brccelvz2#
有了这个,它将工作,数据将是你的变量