小程序竟然可以这样写

http://www.wxapp-union.com/portal.php?mod=view&aid=4464

class CanvasKit { constructor() { } drawImg(option = {}) { ... return this } drawRect(option = {}) { return this } drawText(option = {}) { ... return this } static exportImg(option = {}) { ... } } let drawer = new CanvasKit('canvasId').drawImg(styleObj1).drawText(styleObj2) drawer.exportImg()



原文地址:https://www.cnblogs.com/dianzan/p/9670509.html