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


TypeScript Observable.of方法代碼示例

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


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

示例1: getPlayer

 public getPlayer(id: number): Observable<Player> {
     return Observable.of(new Player(1, 'Foo', 0, 0));
 }
開發者ID:feibeck,項目名稱:fussi,代碼行數:3,代碼來源:player-edit.component.spec.ts

示例2:

 .flatMap(auth => auth ? af.database.object(`users/${auth.uid}`) : Observable.of(null));
開發者ID:matantsu,項目名稱:GetPro,代碼行數:1,代碼來源:selectors.ts

示例3: foo

async function foo() {
  return await Observable.of(1).toPromise();
}
開發者ID:sbelalex,項目名稱:nem-ico-project,代碼行數:3,代碼來源:health.spec.ts

示例4: function

 get: function(filename){
   return Observable.of({});
 }
開發者ID:GSA,項目名稱:sam-web-design-standards,代碼行數:3,代碼來源:baseexample.spec.ts

示例5: beforeEach

 beforeEach(() => {
     DevicesService.delete.and.returnValues(Observable.of(1));
     DialogService.confirm.and.returnValue(Observable.of(true));
     sut.remove();
 });
開發者ID:garage-it,項目名稱:SmartHouse-frontend,代碼行數:5,代碼來源:device-details-page.component.test.ts

示例6:

 const testView = (model$: O<any>) => O.of(div('testDOM'));
開發者ID:wizardwerdna,項目名稱:FRPBowlingKata,代碼行數:1,代碼來源:bowlingLine.spec.ts

示例7:

this.searchBlock(input).catch(err => Observable.of(err)),
開發者ID:bitpay,項目名稱:bitcore,代碼行數:1,代碼來源:search.ts

示例8: intent

 function intent(DOMSource) {
   const rollButton$ = DOMSource.select('.rollButton').events('click');
   expect(rollButton$.map(evt => evt.target.innerHTML)).toBeStreamOf('5');
   return O.of({type: 'ROLL', payload: 5});
 }
開發者ID:wizardwerdna,項目名稱:FRPBowlingKata,代碼行數:5,代碼來源:bowlingLine.spec.ts


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