书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 140 个相关结果.
  • 异步初始化

    异步初始化 异步初始化 在某些情况下,我们需要一个实例在被其他依赖调用前需要初始化,如果这个初始化只是读取某个文件,那么可以写成同步方式,而如果这个初始化是从远端拿取数据或者连接某个服务,这个情况下,普通的同步代码就非常的难写。 midway 提供了异步初始化的能力,通过 @init 标签来管理初始化方法。 @init 方法目前只能是一个。 ...
  • 注入已有对象

    注入已有对象 注入已有对象 有时候,应用已经有现有的实例,而不是类,比如引入了一个第三库,这个时候如果希望对象能够被其他 IoC 容器中的实例引用,也可以通过增加对象的方式进行处理。 我们拿常见的 http 请求库 urllib 来举例。 假如我们希望在不同的类中来使用,并且不通过 require 的方式,你需要在容器的入口通过 registe...
  • 使用 injection 解耦

    使用 injection 解耦 使用 injection 解耦 如果你使用了 midway,这些创建的过程将会自动完成,这里为了更好理解,我们将从头开始展示。 首先是安装依赖: npm i injection -- save 然后我们将上面的代码进行解耦。 // 使用 IoC import { Container } fro...
  • printf(/) and stdio in the Julia runtime

    printf() and stdio in the Julia runtime -and-stdio-in-the-Julia-runtime) Libuv wrappers for stdio Interface between JL_STD* and Julia code printf() during initialization -during-...
  • printf() and stdio in the Julia runtime

    printf() and stdio in the Julia runtime Libuv wrappers for stdio Interface between JL_STD* and Julia code printf() during initialization Legacy ios.c library printf() and s...
  • Don’t Be Afraid to Break Things

    Don’t Be Afraid to Break Things Don’t Be Afraid to Break Things Everyone with industry experience has undoubtedly worked on a project where the codebase was precarious at best....
  • 1.1. 3.1.x Branch

    1.1. 3.1.x Branch 1.1.1. Version 3.1.1 1.1.1.1. Features and Enhancements 1.1.1.2. Performance 1.1.1.3. Bugfixes 1.1.1.4. Other 1.1.2. Version 3.1.0 1.1.2.1. Features and Enha...
  • 1.2. 3.1.x Branch

    1.2. 3.1.x Branch 1.2.1. Version 3.1.2 1.2.2. Version 3.1.1 1.2.2.1. Features and Enhancements 1.2.2.2. Performance 1.2.2.3. Bugfixes 1.2.2.4. Other 1.2.3. Version 3.1.0 1.2....
  • printf() and stdio in the Julia runtime

    printf() and stdio in the Julia runtime -and-stdio-in-the-Julia-runtime) Libuv wrappers for stdio Interface between JL_STD* and Julia code printf() during initialization -during-...
  • 使用装饰器注入

    使用装饰器注入 @provide() @inject() 使用装饰器注入 如果每次代码都需要手动绑定,然后通过 get/getAsync 方法拿到对应的对象,那将会非常繁琐,由于 在设计之初 midway/injection 体系就基于 ts,参考了业界的 IoC 实现,完成了属于自己的依赖注入能力,主要是通过 @provide 和 @inj...