当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Container.unbind方法代码示例

本文整理汇总了TypeScript中inversify.Container.unbind方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Container.unbind方法的具体用法?TypeScript Container.unbind怎么用?TypeScript Container.unbind使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在inversify.Container的用法示例。


在下文中一共展示了Container.unbind方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

        it("Should resolve from container directly", () => {

            const container = new Container();
            const {
                lazyInject,
                lazyInjectNamed,
                lazyInjectTagged,
                lazyMultiInject
            } = getDecorators(container, false);

            const FOO = "FOO";
            const BAR = "BAR";

            @injectable()
            class Foo {
            }

            @injectable()
            class NamedFoo {
            }

            @injectable()
            class TaggedFoo {
            }

            container.bind<Foo>(FOO).to(Foo);
            container.bind<NamedFoo>(BAR).to(NamedFoo).whenTargetNamed("bar");
            container.bind<TaggedFoo>(BAR).to(TaggedFoo).whenTargetTagged("bar", true);

            @injectable()
            class Test {
                @lazyInject(FOO) public foo: Foo;
                @lazyMultiInject(FOO) public foos: Foo[];
                @lazyInjectNamed(BAR, "bar") @named("bar") public namedFoo: Foo;
                @lazyInjectTagged(BAR, "bar", true) @tagged("bar", true) public taggedFoo: Foo;
            }

            const sut: any = new Test();

            function actual(key: string): any {
              return sut[key];
            }

            expect(actual("foo")).to.be.instanceof(Foo);
            expect(actual("foos")[0]).to.be.instanceof(Foo);
            expect(actual("namedFoo")).to.be.instanceof(NamedFoo);
            expect(actual("taggedFoo")).to.be.instanceof(TaggedFoo);

            function throws(key: string): () => any {
                return () => {
                  return sut[key];
                };
            }

            container.unbind(FOO);
            container.unbind(BAR);

            expect(throws("foo")).to.throw(
                "No matching bindings found for serviceIdentifier: FOO"
            );
            expect(throws("foos")).to.throw(
                "No matching bindings found for serviceIdentifier: FOO"
            );
            expect(throws("namedFoo")).to.throw(
                "No matching bindings found for serviceIdentifier: BAR"
            );
            expect(throws("taggedFoo")).to.throw(
                "No matching bindings found for serviceIdentifier: BAR"
            );
        });
开发者ID:inversify,项目名称:inversify-inject-decorators,代码行数:70,代码来源:issue-730.test.ts

示例2: afterEach

 afterEach(async () => {
   await connection.close();
   container.unbind(registry.ORMConnectionOptions);
   container.unbind(registry.ORMConnection);
 });
开发者ID:patrickhousley,项目名称:xyzzy-mean,代码行数:5,代码来源:connection.provider.spec.ts


注:本文中的inversify.Container.unbind方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。