码迷,mamicode.com
首页 > 编程语言 > 详细

类数组转化为真正的数组

时间:2019-08-26 00:16:29      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:lock   inter   prototype   col   ice   console   cal   strong   from   

引言

开发过程中,有很多时候获取到的是类似数组的对象。比如元素的集合(elementcollection,nodeList,以及今天开发时发现classList也是类数组)。有时我们需要类数组去调用数组的方法,怎么办?

办法一

遍历类数组,将类数组里面的元素依次放入一个新的数组

  1. 类数组本身虽然不是数组,但是有interator接口,所以可遍历。(interator指可遍历、可迭代)
let foo = {
    0 : 1,
    1 : 2,
    2 : 3,
    length : 3
}

let arr = [];

for(let item of foo){
    arr.push(item)
}

办法二

使用 es6 中 Array.from()方法转换

let foo = {
    0 : 1,
    1 : 2,
    2 : 3,
    length : 3
}
let arr = Array.from(foo)

办法三

使用 apply 和 call
apply方法的第二个参数是数组,也可以是类数组,在调用的时候会将第二个参数依次展开。

let foo = {
    0 : 1,
    1 : 2,
    2 : 3,
    length : 3
}
// apply
let arr = [].concat.apply([],foo)
// call
let arr = Array.prototype.slice.call(foo)
console.log(arr)

类数组转化为真正的数组

标签:lock   inter   prototype   col   ice   console   cal   strong   from   

原文地址:https://www.cnblogs.com/ifon/p/11409871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!