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


TypeScript core.NgZone类代码示例

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


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

示例1: expect

 events.on(element, 'click', () => {
     expect(NgZone.isInAngularZone()).toBe(true);
     counter++;
 });
开发者ID:DevExpress,项目名称:devextreme-angular2,代码行数:4,代码来源:events.spec.ts

示例2:

 next: () => {
   NgZone.assertNotInAngularZone();
   _log.add('onMyTaskDone');
 }
开发者ID:DeepanParikh,项目名称:angular,代码行数:4,代码来源:ng_zone_spec.ts

示例3: macroTask

 macroTask(() => { expect(_zone.runTask(() => 6)).toEqual(6); });
开发者ID:DeepanParikh,项目名称:angular,代码行数:1,代码来源:ng_zone_spec.ts

示例4:

 this.sub = competitions$.subscribe(heroes => {
   this.competitions = heroes;
   this.zone.run(() => { });
 });
开发者ID:NejcZdovc,项目名称:climbing-competition,代码行数:4,代码来源:competition-home.component.ts

示例5:

 Tracker.autorun(() => {
     this.ngZone.run(() => {
         this.plant = Plants.findOne(this.plantId)
     });
 });
开发者ID:quantumleeps,项目名称:meteor,代码行数:5,代码来源:view-plant-details.ts

示例6:

 element['onPress'] = (...cbArgs: Array<any>) => {zone.run(() => deepCB.apply(target, cbArgs));}
开发者ID:angular,项目名称:react-native-renderer,代码行数:1,代码来源:wrapper_impl.ts

示例7:

 const handler = (changes: Object[]) => {
     this.ngZone.run(() => {
         this.categories = Category.parseRows(changes.pop()['object']);
     });
 };
开发者ID:mattblang,项目名称:b4a,代码行数:5,代码来源:category-list.component.ts

示例8:

		electron.ipcRenderer.on('mail:fetch', (event, mails) => {
			this.zone.run(() => {
				this.registerContactsFrom(mails);
				this.mails = mails.slice().reverse().concat(this.mails);
			});
		});
开发者ID:ziacik,项目名称:amelie-mail,代码行数:6,代码来源:mail.service.ts


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