當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。