下面是我的代码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那么我理解的这个函数被调用时的输出应该是01disconnect 0102disconnect 02但是实际上我得到的输出是0102disconnect 01disconnect 02我的问题是map方法的说明中对集合元素进行操作,是不是按顺序的,如果是按顺序的,是不是在一个元素操作结束后再操作下一个元素?
添加回答
举报
0/150
提交
取消