摘要: 第三篇的文章中,我们实现了简单的IoC容器,代码如下: 1 import 'reflect-metadata'; 2 3 type Tag = string; 4 type Constructor<T = any> = new (...args: any[]) => T; 5 type BindVa 阅读全文
posted @ 2021-01-08 16:11 JasonWangTing 阅读(1035) 评论(0) 推荐(0) 编辑