我偶然发现了这个将 DOM NodeList 转换为常规数组的简洁快捷方式,但我必须承认,我并不完全理解它是如何工作的:
[].slice.call(document.querySelectorAll('a'), 0)
所以它从一个空数组开始[]
,然后slice
用于将结果转换call
为一个新数组是吗?
我不明白的一点是call
。这如何document.querySelectorAll('a')
从 NodeList 转换为常规数组?
我偶然发现了这个将 DOM NodeList 转换为常规数组的简洁快捷方式,但我必须承认,我并不完全理解它是如何工作的:
[].slice.call(document.querySelectorAll('a'), 0)
所以它从一个空数组开始[]
,然后slice
用于将结果转换call
为一个新数组是吗?
我不明白的一点是call
。这如何document.querySelectorAll('a')
从 NodeList 转换为常规数组?
这里发生的事情是你调用slice()
它就好像它是NodeList
using的一个函数call()
。在slice()
这种情况下所做的是创建一个空数组,然后遍历它正在运行的对象(最初是一个数组,现在是 a NodeList
)并继续将该对象的元素附加到它创建的空数组中,最终返回。这是一篇关于此的文章。
编辑:
所以它从一个空数组[]开始,然后切片用于将调用结果转换为一个新数组是吗?
那是不对的。[].slice
返回一个函数对象。函数对象有一个函数call()
,该函数调用分配 to 的第一个参数的call()
函数this
;换句话说,使函数认为它是从参数(由NodeList
返回document.querySelectorAll('a')
)而不是从数组调用的。
在 JavaScript 中,一个对象的方法可以在运行时绑定到另一个对象。简而言之,javascript 允许一个对象“借用”另一个对象的方法:
object1 = {
name: 'Frank',
greet() {
alert(`Hello ${this.name}`);
}
};
object2 = {
name: 'Andy'
};
// Note that object2 has no greet method,
// but we may "borrow" from object1:
object1.greet.call(object2); // Will show an alert with 'Hello Andy'
函数对象的call
和apply
方法(在 JavaScript 中,函数也是对象)允许您执行此操作。因此,在您的代码中,您可以说 NodeList 正在借用数组的 slice 方法。.slice()
返回另一个数组作为结果,它将成为您可以使用的“转换后的”数组。
它slice
从Array
. 然后它调用该函数,但使用结果document.querySelectorAll
作为this
对象而不是实际数组。
这如何
document.querySelectorAll('a')
从 a 转换NodeList
为常规数组?
这是我们拥有的代码,
[].slice.call(document.querySelectorAll('a'), 0)
先拆吧,
[] // Array object
.slice // Accessing the function 'slice' present in the prototype of Array
.call // Accessing the function 'call' present in the prototype of function object(slice)
(document.querySelectorAll('a'),0)
// 'call' can have arguments like, (thisArg, arg1,arg2...n).
// So here we are passing the 'thisArg' as an array like object,
// that is a 'nodeList'. It will be served as 'this' object inside of slice function.
// And finally setting 'start' argument of slice as '0' and leaving the 'end'
// argument as 'undefined'
Step: 1call
函数的执行
call
,除了 之外thisArg
,其余参数将附加到参数列表中。slice
将通过将其this
值绑定为
thisArg
(array like object came from document.querySelector
) 和参数列表来调用。ie] 参数start
包含0
步骤:2 执行slice
内部调用的函数call
start
将被分配给一个s
变量0
end
是undefined
,this.length
将被存储在e
a
进行上述设置后,将发生以下迭代
while(s < e) {
a.push(this[s]);
s++;
}
a
将作为结果返回。[].slice.call(document.querySelectorAll('.slide'));
querySelectorAll() 方法返回文档中与指定选择器匹配的所有元素。
call() 方法使用给定的 this 值和单独提供的参数调用函数。
slice() 方法将数组中的选定元素作为新的数组对象返回。
所以这一行返回 [object HTMLDivElement] 的数组。这是类名为“slide”的六个 div,因此数组长度为 6。
var arraylist = [].slice.call(document.querySelectorAll('.slide'));
console.log(arraylist);
<div class="slideshow">
<div class="slide">
first slider1
</div>
<div class="slide">
first slider2
</div>
<div class="slide">
first slider3
</div>
<div class="slide">
first slider4
</div>
<div class="slide">
first slider5
</div>
<div class="slide">
first slider6
</div>
</div>
来自 ES6:只需使用Array.from(element.children)或Array.from({length: 5})创建数组
这也可能有帮助。
slice() 方法将数组的一部分的浅表副本返回到从开始到结束(不包括结束)选择的新数组对象中,其中开始和结束表示该数组中项目的索引。原始数组不会被修改。查看更多:参考/Global_Objects/Array/slice
call() 允许为不同的对象分配和调用属于一个对象的函数/方法。
call() 方法使用给定的 this 值和单独提供的参数调用函数。call() 为函数/方法提供了 this 的新值。使用 call(),您可以编写一次方法,然后在另一个对象中继承它,而无需为新对象重写方法。
在 2020 年代,我们使用
[...document.querySelectorAll('.slide')]
当您想使用 map 或 filter 但不再需要使用 forEach 时,它很有用,因为 forEach 现在适用于从返回的集合document.querySelectorAll('.slide')