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


TypeScript Compiler.compileModuleAsync方法代码示例

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


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

示例1: wrapIntoObservable

 return wrapIntoObservable(loadChildren()).pipe(mergeMap((t: any) => {
   if (t instanceof NgModuleFactory) {
     return of (t);
   } else {
     return from(this.compiler.compileModuleAsync(t));
   }
 }));
开发者ID:Cammisuli,项目名称:angular,代码行数:7,代码来源:router_config_loader.ts

示例2: Error

 .then((rawModule: any) => {
   const module = rawModule[ngModuleExport];
   if (!module) {
     throw new Error(`Module ${modulePath} does not export ${ngModuleExport}`);
   }
   return compiler.compileModuleAsync(module);
 });
开发者ID:Artfloriani,项目名称:ionic,代码行数:7,代码来源:ng-module-loader.ts

示例3: of

 return mergeMap.call(wrapIntoObservable(loadChildren()), (t: any) => {
   if (t instanceof NgModuleFactory) {
     return of (t);
   } else {
     return fromPromise(this.compiler.compileModuleAsync(t));
   }
 });
开发者ID:acramatte,项目名称:angular,代码行数:7,代码来源:router_config_loader.ts

示例4: resolve

  return new Promise<NgModuleFactory<{}>>((resolve, reject) => {
    // If module has been compiled AoT
    if (moduleOrFactory instanceof NgModuleFactory) {
      console.log('Already AoT?');
      resolve(moduleOrFactory);
      return;
    } else {
      let moduleFactory = factoryCacheMap.get(moduleOrFactory);

      // If module factory is cached
      if (moduleFactory) {
        console.log('\n\n\n WE FOUND ONE!! USE IT!!\n\n\n');
        resolve(moduleFactory);
        return;
      }

      // Compile the module and cache it
      compiler.compileModuleAsync(moduleOrFactory)
        .then((factory) => {
          console.log('\n\n\n\n MAP THIS THING!!!!\n\n\n ');
          factoryCacheMap.set(moduleOrFactory, factory);
          resolve(factory);
        }, (err => {
          reject(err);
        }));
    }
  });
开发者ID:SKorolchuk,项目名称:aspnetcore-angular2-universal,代码行数:27,代码来源:temporary-aspnetcore-engine.ts

示例5: it

      it('should allow to use templateUrl components', fakeAsync(() => {
           @NgModule(
               {declarations: [SomeCompWithUrlTemplate], precompile: [SomeCompWithUrlTemplate]})
           class SomeModule {
           }

           xhr.spy('get').andCallFake(() => Promise.resolve('hello'));
           let ngModuleFactory: NgModuleFactory<any>;
           compiler.compileModuleAsync(SomeModule).then((f) => ngModuleFactory = f);
           tick();
           expect(ngModuleFactory.moduleType).toBe(SomeModule);
         }));
开发者ID:alexbell1,项目名称:angular,代码行数:12,代码来源:runtime_compiler_spec.ts

示例6: fakeAsync

         fakeAsync(() => {
           @NgModule(
               {declarations: [SomeCompWithUrlTemplate], precompile: [SomeCompWithUrlTemplate]})
           class SomeModule {
           }

           xhr.spy('get').andCallFake(() => Promise.resolve('hello'));
           compiler.compileModuleAsync(SomeModule);
           tick();

           let ngModuleFactory = compiler.compileModuleSync(SomeModule);
           expect(ngModuleFactory).toBeTruthy();
         }));
开发者ID:alexbell1,项目名称:angular,代码行数:13,代码来源:runtime_compiler_spec.ts

示例7: fakeAsync

         fakeAsync(() => {
           @NgModule({
             declarations: [SomeCompWithUrlTemplate],
             entryComponents: [SomeCompWithUrlTemplate]
           })
           class SomeModule {
           }

           resourceLoader.spy('get').and.callFake(() => Promise.resolve('hello'));
           compiler.compileModuleAsync(SomeModule);
           tick();

           const ngModuleFactory = compiler.compileModuleSync(SomeModule);
           expect(ngModuleFactory).toBeTruthy();
         }));
开发者ID:AnthonyPAlicea,项目名称:angular,代码行数:15,代码来源:runtime_compiler_spec.ts

示例8: resolve

  return new Promise<NgModuleFactory<{}>>((resolve, reject) => {
    // If module has been compiled AoT
    if (moduleOrFactory instanceof NgModuleFactory) {
      resolve(moduleOrFactory);
      return;
    } else {
      let moduleFactory = factoryCacheMap.get(moduleOrFactory);

      // If module factory is cached
      if (moduleFactory) {
        resolve(moduleFactory);
        return;
      }

      // Compile the module and cache it
      compiler.compileModuleAsync(moduleOrFactory)
        .then((factory) => {
          factoryCacheMap.set(moduleOrFactory, factory);
          resolve(factory);
        }, (err => {
          reject(err);
        }));
    }
  });
开发者ID:MarkPieszak,项目名称:universal,代码行数:24,代码来源:main.ts

示例9: constructor

 constructor(compiler: Compiler) {
     compiler.compileModuleAsync(TaskModule).then(value => {
         this.myModule = value;
     });
 }
开发者ID:vfcosta,项目名称:angular-theme,代码行数:5,代码来源:task.component.ts

示例10: constructor

 constructor(compiler: Compiler) {
     super('theme_header');
     compiler.compileModuleAsync(HotspotModule).then(value => {
         this.myModule = value;
     });
 }
开发者ID:vfcosta,项目名称:angular-theme,代码行数:6,代码来源:theme-header.component.ts


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