下面是我的代码
function disconnectall() {
server.app.peripherals.map(function(peripheral){
console.log(peripheral.id);
peripheral.disconnect(function(error){
if(error){
console.log(error);
}else{
console.log("disconnect " + peripheral.id);}
})
});
}
假设peripherals中包含两个元素,两个元素的ID分别是01,02
那么我理解的这个函数被调用时的输出应该是
01
disconnect 01
02
disconnect 02
但是实际上我得到的输出是
01
02
disconnect 01
disconnect 02
我的问题是map方法的说明中对集合元素进行操作,是不是按顺序的,如果是按顺序的,是不是在一个元素操作结束后再操作下一个元素?
巴扎黑2017-04-11 12:40:55
你好,mdn上的描述为
map calls a provided callback function once for each element in an array, in order, and constructs a new array from the results.
其中in order 说明为按序