首页 前端知识 Invalid attempt to spread non-iterable instance.In order to be iterable, n

Invalid attempt to spread non-iterable instance.In order to be iterable, n

2024-05-10 22:05:02 前端知识 前端哥 799 87 我要收藏

Invalid attempt to spread non-iterable instance.In order to be iterable, non-array objects must have a [Symbol.iterator]() method.

翻译:

传播不可迭代实例的尝试无效。

为了可迭代,非数组对象必须具有[Symbol.iiterator]()方法。

出现这个报错的时候一般都是在对象前面使用了扩展运算符


let obj = {name: '张三', age: 18};
let arr = [...obj];    // 就是这个地方报的错误

如果只是想将对象里面的值赋给数组可以使用for in


for (let key in obj){
    arr.push(obj[key]);
}
console.log(arr)    // ['张三', 18]

转载请注明出处或者链接地址:https://www.qianduange.cn//article/8067.html
标签
评论
发布的文章
大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!