當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript InjectorService.get方法代碼示例

本文整理匯總了TypeScript中@tsed/di.InjectorService.get方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript InjectorService.get方法的具體用法?TypeScript InjectorService.get怎麽用?TypeScript InjectorService.get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@tsed/di.InjectorService的用法示例。


在下文中一共展示了InjectorService.get方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: return

  return (injector: InjectorService, target: any) => {
    if (injector.has(interceptor)) {
      const originalMethod = target[method];
      const intcpt = injector.get<IInterceptor>(interceptor)!;

      function interceptedMethod(...args: any[]) {
        const context = {
          target,
          method,
          args,
          proceed(err?: Error) {
            if (!err) {
              return originalMethod.apply(target, args);
            }

            throw err;
          }
        };

        return intcpt.aroundInvoke(context, options);
      }

      target[method] = interceptedMethod;
    }
  };
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:25,代碼來源:interceptorInvokeFactory.ts

示例2: invoke

  /**
   *
   * @param {Type<IFilter>} target
   * @param args
   * @returns {any}
   */
  private invoke(target: Type<IFilter>, ...args: any[]): any {
    const instance = this.injector.get<IFilter>(target);

    if (!instance || !instance.transform) {
      throw new UnknowFilterError(target);
    }

    const [expression, request, response] = args;

    return instance.transform(expression, request, response);
  }
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:17,代碼來源:FilterBuilder.ts

示例3: createHttpServer

export function createHttpServer(injector: InjectorService): Http.Server {
  const expressApp = injector.get<ExpressApplication>(ExpressApplication);
  const httpServer = Http.createServer(expressApp);
  // TODO to be removed
  /* istanbul ignore next */
  (httpServer as any).get = () => httpServer;

  injector.forkProvider(HttpServer, httpServer);

  return httpServer;
}
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:11,代碼來源:createHttpServer.ts

示例4: appendConverterFilter

  /**
   *
   * @param filter
   * @param param
   * @returns {(value: any) => any}
   */
  private appendConverterFilter(filter: any, param: ParamMetadata): Function {
    if (!param.useConverter) {
      return filter;
    }

    const converterService = this.injector.get<ConverterService>(ConverterService)!;

    return FilterBuilder.pipe(
      filter,
      converterService.deserialize.bind(converterService),
      param.collectionType || param.type,
      param.type
    );
  }
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:20,代碼來源:FilterBuilder.ts

示例5: getHandler

  /**
   *
   */
  private getHandler(locals: Map<string | Function, any>): Function {
    const {token, method} = this.handlerMetadata;
    const provider = this.injector.getProvider(token);

    /* istanbul ignore next */
    if (!provider) {
      throw new Error(`${nameOf(token)} component not found in the injector`);
    }

    let instance: any;

    if (provider.scope !== ProviderScope.SINGLETON) {
      instance = this.injector.invoke<any>(provider.useClass, locals, undefined, true);
      locals.set(token, instance);
    } else {
      instance = this.injector.get<any>(token);
    }

    return instance[method!].bind(instance);
  }
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:23,代碼來源:HandlerBuilder.ts

示例6: appendValidationFilter

  /**
   *
   * @param filter
   * @param param
   * @returns {(value: any) => any}
   */
  private appendValidationFilter(filter: any, param: ParamMetadata): Function {
    const type = param.type || param.collectionType;
    const {collectionType} = param;

    if (!param.useValidation || (param.useValidation && !type)) {
      return filter;
    }

    const validationService = this.injector.get<ValidationService>(ValidationService)!;

    return FilterBuilder.pipe(
      filter,
      (value: any) => {
        try {
          validationService.validate(value, type, collectionType);
        } catch (err) {
          throw new ParseExpressionError(param.name, param.expression, err);
        }

        return value;
      }
    );
  }
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:29,代碼來源:FilterBuilder.ts


注:本文中的@tsed/di.InjectorService.get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。