map 转换数组 有个编译后的bug.躲避一下这个坑吧

     const  Array = [...Manger.getInstance().getUserInfo().List.keys()];

    const  Array = Array.from(Manger.getInstance().getUserInfo().List.keys());  

最上层的写法在 cocos web 预览是正常的 但是编译成web端就会报错,躲避一下这个语法.

还有一个问题就是

 this._Queue = [...merged, ...att.slice(minLen), ...def.slice(minLen)]

这样的写法是不是也不能用了?? 只要是 […] 的都能用对吗?