美文网首页
for..in loops iterate over the e

for..in loops iterate over the e

作者: 香喷喷啦啦啦66 | 来源:发表于2019-11-26 16:41 被阅读0次
    image.png

    以上的报错原因是因为for in 不仅会遍历对象的属性,还会遍历对象的原型链,这边是没有必要的,首页报错

    解决方法:用object.keys()方法将对象转化为数组,然后循环,来代替之前的for in 循环
    如下图:


    image.png

    相关文章

      网友评论

          本文标题:for..in loops iterate over the e

          本文链接:https://www.haomeiwen.com/subject/nbhywctx.html