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


TypeScript toPromise.toPromise類代碼示例

本文整理匯總了TypeScript中rxjs/operator/toPromise.toPromise的典型用法代碼示例。如果您正苦於以下問題:TypeScript toPromise類的具體用法?TypeScript toPromise怎麽用?TypeScript toPromise使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: FirebaseListFactory

        .then(() => {

          let query1 = FirebaseListFactory(`questions`, {
            query: {
              orderByChild: 'data',
              endAt: { value: 0 }
            }
          });
          query1 = take.call(query1, 1);
          query1 = toPromise.call(query1);

          let query2 = FirebaseListFactory(`questions`, {
            query: {
              orderByChild: 'data',
              endAt: { value: 0, key: 'val2' }
            }
          });
          query2 = take.call(query2, 1);
          query2 = toPromise.call(query2);

          Promise.all([query1, query2]).then(([list1, list2]) => {
            expect(list1.map(i => i.$key)).toEqual(['val1', 'val2', 'val3']);
            expect(list2.map(i => i.$key)).toEqual(['val1', 'val2']);
            done();
          });
        })
開發者ID:julienevano,項目名稱:angularfire2,代碼行數:26,代碼來源:firebase_list_factory.spec.ts

示例2: Error

  return moduleRefPromise.then((moduleRef) => {
    const transitionId = moduleRef.injector.get(ÉľTRANSITION_ID, null);
    if (!transitionId) {
      throw new Error(
          `renderModule[Factory]() requires the use of BrowserModule.withServerTransition() to ensure
the server-rendered app can be properly bootstrapped into a client app.`);
    }
    const applicationRef: ApplicationRef = moduleRef.injector.get(ApplicationRef);
    return toPromise
        .call(first.call(filter.call(applicationRef.isStable, (isStable: boolean) => isStable)))
        .then(() => {
          const platformState = platform.injector.get(PlatformState);

          // Run any BEFORE_APP_SERIALIZED callbacks just before rendering to string.
          const callbacks = moduleRef.injector.get(BEFORE_APP_SERIALIZED, null);
          if (callbacks) {
            for (const callback of callbacks) {
              try {
                callback();
              } catch (e) {
                // Ignore exceptions.
                console.warn('Ignoring BEFORE_APP_SERIALIZED Exception: ', e);
              }
            }
          }

          const output = platformState.renderToString();
          platform.destroy();
          return output;
        });
  });
開發者ID:AnthonyPAlicea,項目名稱:angular,代碼行數:31,代碼來源:utils.ts

示例3:

 return moduleRefPromise.then((moduleRef) => {
   const applicationRef: ApplicationRef = moduleRef.injector.get(ApplicationRef);
   return toPromise
       .call(first.call(filter.call(applicationRef.isStable, (isStable: boolean) => isStable)))
       .then(() => {
         const output = platform.injector.get(PlatformState).renderToString();
         platform.destroy();
         return output;
       });
 });
開發者ID:manekinekko,項目名稱:angular,代碼行數:10,代碼來源:utils.ts

示例4:

 const initializer = () => {
   const app = injector.get<ApplicationRef>(ApplicationRef);
   if (!('serviceWorker' in navigator)) {
     return;
   }
   const onStable =
       op_filter.call(app.isStable, (stable: boolean) => !!stable) as Observable<boolean>;
   const isStable = op_take.call(onStable, 1) as Observable<boolean>;
   const whenStable = op_toPromise.call(isStable) as Promise<boolean>;
   return whenStable.then(() => navigator.serviceWorker.register(script, options))
       .then(() => undefined) as Promise<void>;
 };
開發者ID:cartant,項目名稱:angular,代碼行數:12,代碼來源:module.ts

示例5:

  const initializer = () => {
    const app = injector.get<ApplicationRef>(ApplicationRef);
    if (!('serviceWorker' in navigator)) {
      return;
    }
    const onStable =
        op_filter.call(app.isStable, (stable: boolean) => !!stable) as Observable<boolean>;
    const isStable = op_take.call(onStable, 1) as Observable<boolean>;
    const whenStable = op_toPromise.call(isStable) as Promise<boolean>;

    // Don't return the Promise, as that will block the application until the SW is registered, and
    // cause a crash if the SW registration fails.
    whenStable.then(() => navigator.serviceWorker.register(script, options));
  };
開發者ID:AnthonyPAlicea,項目名稱:angular,代碼行數:14,代碼來源:module.ts

示例6: FirebaseListFactory

        .then(() => {

          let query1 = FirebaseListFactory(app.database().ref(`questions`), {
            query: {
              orderByChild: 'data',
              equalTo: { value: 0 }
            }
          });
          let promise1 = toPromise.call(take.call(query1, 1));

          let query2 = FirebaseListFactory(app.database().ref(`questions`), {
            query: {
              orderByChild: 'data',
              equalTo: { value: 0, key: 'val2' }
            }
          });
          let promise2 = toPromise.call(take.call(query2, 1));

          Promise.all([promise1, promise2]).then(([list1, list2]) => {
            expect(list1.map(i => i.$key)).toEqual(['val1', 'val2', 'val3']);
            expect(list2.map(i => i.$key)).toEqual(['val2']);
            done();
          });
        })
開發者ID:mhartington,項目名稱:angularfire2,代碼行數:24,代碼來源:firebase_list_factory.spec.ts

示例7: Error

  return moduleRefPromise.then((moduleRef) => {
    const transitionId = moduleRef.injector.get(ÉľTRANSITION_ID, null);
    if (!transitionId) {
      throw new Error(
          `renderModule[Factory]() requires the use of BrowserModule.withServerTransition() to ensure
the server-rendered app can be properly bootstrapped into a client app.`);
    }
    const applicationRef: ApplicationRef = moduleRef.injector.get(ApplicationRef);
    return toPromise
        .call(first.call(filter.call(applicationRef.isStable, (isStable: boolean) => isStable)))
        .then(() => {
          const output = platform.injector.get(PlatformState).renderToString();
          platform.destroy();
          return output;
        });
  });
開發者ID:mdegani,項目名稱:angular,代碼行數:16,代碼來源:utils.ts

示例8:

  const initializer = () => {
    const app = injector.get<ApplicationRef>(ApplicationRef);
    if (!(isPlatformBrowser(platformId) && ('serviceWorker' in navigator) &&
          options.enabled !== false)) {
      return;
    }
    const onStable =
        op_filter.call(app.isStable, (stable: boolean) => !!stable) as Observable<boolean>;
    const isStable = op_take.call(onStable, 1) as Observable<boolean>;
    const whenStable = op_toPromise.call(isStable) as Promise<boolean>;

    // Wait for service worker controller changes, and fire an INITIALIZE action when a new SW
    // becomes active. This allows the SW to initialize itself even if there is no application
    // traffic.
    navigator.serviceWorker.addEventListener('controllerchange', () => {
      if (navigator.serviceWorker.controller !== null) {
        navigator.serviceWorker.controller.postMessage({action: 'INITIALIZE'});
      }
    });

    // Don't return the Promise, as that will block the application until the SW is registered, and
    // cause a crash if the SW registration fails.
    whenStable.then(() => navigator.serviceWorker.register(script, {scope: options.scope}));
  };
開發者ID:asself,項目名稱:angular,代碼行數:24,代碼來源:module.ts

示例9: _convertToPromise

function _convertToPromise(obj: any): Promise<any> {
  return isPromise(obj) ? obj : toPromise.call(obj);
}
開發者ID:Jake-Church,項目名稱:angular,代碼行數:3,代碼來源:validators.ts


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