const foo = Promise.all([10, 20])foo.then( // 这里没有看到传入参数[10, 20]的形参,如何解开这个数组的? Function.apply.bind((x, y) => { console.log(x, y) // 10, 20 // null为什么一定要写? }, null))https://jsfiddle.net/mmm0821/...
添加回答
举报
0/150
提交
取消