文件名称:di:JS。 简单的JS依赖注入容器
文件大小:1KB
文件格式:ZIP
更新时间:2024-07-03 13:58:16
ioc js di JavaScript
迪 简单的JS依赖注入容器 定义服务 container . set ( 'storage' , function ( container ) { return new Storage ; } ) ; container . set ( 'cache' , function ( container ) { return new Cache ( container . get ( 'storage' ) ) ; } ) ; 定义工厂服务 container . set ( 'cache' , container . factory ( function ( container ) { return new Cache ( container . get ( 'storage' ) ) ; } ) ) ; 定义后修改服务 container . extend (
【文件预览】:
di-master
----README.md(3KB)
----src()
--------di.js(1KB)