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


TypeScript rxjs.of函數代碼示例

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


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

示例1: it

it('should support a scheduler', () => {
  const o = of('a', 'b', 'c').pipe(timeout(10, asyncScheduler)); // $ExpectType Observable<string>
  const p = of('a', 'b', 'c').pipe(timeout(new Date(), asyncScheduler)); // $ExpectType Observable<string>
});
開發者ID:jaychsu,項目名稱:RxJS,代碼行數:4,代碼來源:timeout-spec.ts

示例2: concatMap

 concatMap(() => options.deleteOutputPath
   ? this._deleteOutputDir(root, normalize(options.outputPath), this.context.host)
   : of(null)),
開發者ID:cexbrayat,項目名稱:angular-cli,代碼行數:3,代碼來源:index.ts

示例3: it

it('should enforce types', () => {
  const o = of('a', 'b', 'c').pipe(repeat('aa')); // $ExpectError
});
開發者ID:jaychsu,項目名稱:RxJS,代碼行數:3,代碼來源:repeat-spec.ts

示例4: it

it('should support an undefined predicate with a T default', () => {
  const o = of('foo').pipe(last(undefined, 'bar')); // $ExpectType Observable<string>
});
開發者ID:DallanQ,項目名稱:rxjs,代碼行數:3,代碼來源:last-spec.ts

示例5: mergeMap

 mergeMap((x: string) => of(x))
開發者ID:DallanQ,項目名稱:rxjs,代碼行數:1,代碼來源:audit-spec.ts

示例6: getHeroes

 // getHeroes(): Hero[]{
 //   return HEROES
 // }
 getHeroes(): Observable<Hero[]> {
   // return of(HEROES);
   this.messageService.add('HeroService:    xxxx');
   return of(HEROES)
 }
開發者ID:799929573,項目名稱:learn-angular,代碼行數:8,代碼來源:hero.service.ts

示例7: observableOf

 getSystem(): Observable<DotWorkflow> {
     const systemWorkflow = mockWorkflows.filter((workflow: DotWorkflow) => workflow.system);
     return observableOf(_.cloneDeep(systemWorkflow[0]));
 }
開發者ID:dotCMS,項目名稱:core-web,代碼行數:4,代碼來源:dot-workflow-service.mock.ts

示例8: observableOf

      factory: () => (fem: Tree) => {
        inner = fem;

        return observableOf(empty());
      },
開發者ID:rexebin,項目名稱:angular-cli,代碼行數:5,代碼來源:schematic_spec.ts

示例9: observableOf

 enumerate() {
   return observableOf(queryResult);
 }
開發者ID:C2python,項目名稱:ceph,代碼行數:3,代碼來源:rgw-bucket-form.component.spec.ts


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