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


TypeScript NgZone.isInAngularZone方法代碼示例

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


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

示例1: spy

 autofillStream.subscribe(() => spy(NgZone.isInAngularZone()));
開發者ID:shlomiassaf,項目名稱:material2,代碼行數:1,代碼來源:autofill.spec.ts

示例2: spy

 const subscription = ruler.change(0).subscribe(() => spy(NgZone.isInAngularZone()));
開發者ID:Nodarii,項目名稱:material2,代碼行數:1,代碼來源:viewport-ruler.spec.ts

示例3: spy

 const subscription = overlayRef.detachments().subscribe(() => spy(NgZone.isInAngularZone()));
開發者ID:ravichandra480,項目名稱:material2,代碼行數:1,代碼來源:close-scroll-strategy.spec.ts

示例4: spy

 focusMonitor.monitor(buttonElement).subscribe(() => spy(NgZone.isInAngularZone()));
開發者ID:Nodarii,項目名稱:material2,代碼行數:1,代碼來源:focus-monitor.spec.ts

示例5: value

 @Input()
 set value(v: number) { expect(NgZone.isInAngularZone()).toBe(true); }
開發者ID:JohnnyQQQQ,項目名稱:angular,代碼行數:2,代碼來源:change_detection_spec.ts

示例6: runNgZoneNoLog

 runNgZoneNoLog(() => { expect(NgZone.isInAngularZone()).toEqual(true); });
開發者ID:Cammisuli,項目名稱:angular,代碼行數:1,代碼來源:ng_zone_spec.ts

示例7: it

 it('should return whether the code executes in the inner zone', () => {
   expect(NgZone.isInAngularZone()).toEqual(false);
   runNgZoneNoLog(() => { expect(NgZone.isInAngularZone()).toEqual(true); });
 }, testTimeout);
開發者ID:Cammisuli,項目名稱:angular,代碼行數:4,代碼來源:ng_zone_spec.ts

示例8: expect

 events.on(element, 'click', () => {
     expect(NgZone.isInAngularZone()).toBe(true);
     counter++;
 });
開發者ID:DevExpress,項目名稱:devextreme-angular2,代碼行數:4,代碼來源:events.spec.ts


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