关闭 Konvajs 警告
Turn off Konvajs warnings
当层数超过五层时,Konva 会按照以下行向控制台输出警告:
"The stage has n layers. Recommended maximin number of layers is 3-5. Adding more layers into the stage may drop the performance. Rethink your tree structure, you can use Konva.Group."
很好,但如果一切正常并且没有性能问题,我想关闭警告。
有没有办法阻止 Konva 库输出某些警告?
这是可能的:https://konvajs.org/api/Konva.html#.showWarnings
Konva.showWarnings = false;
当层数超过五层时,Konva 会按照以下行向控制台输出警告:
"The stage has n layers. Recommended maximin number of layers is 3-5. Adding more layers into the stage may drop the performance. Rethink your tree structure, you can use Konva.Group."
很好,但如果一切正常并且没有性能问题,我想关闭警告。
有没有办法阻止 Konva 库输出某些警告?
这是可能的:https://konvajs.org/api/Konva.html#.showWarnings
Konva.showWarnings = false;