2017-10-16 73 views
0

edit See Ikhtiyor's answer as it may fix the TypeScript related issue. My problem came from the fact I forgot to .subscribe and wrote the handler function in .first() directly.角4.2.4 +打字稿2.3.4 + RxJS 5.4.2: 「第一個()」 不是一個可觀察到的已知

所以,面對這個錯誤(!?!):

Property 'first' does not exist on type Observable<{}> 

我發現人們堅持以下幾個版本,並修復了以下問題:

Angular 4.2.4 + Typescript 2.3.4 + RxJS 5.4.2

不過,它不適用於我。測試2臺機器(一臺Mac,一臺窗戶)。甚至在清除node_modules和re-npm安裝它們之後都沒有。 任何人都面臨這個阻滯劑?

例子:

const obs = new Observable(observer => { 

    setTimeout(() => { 
    observer.next(
     [{ 
     type: 'voting', 
     title: 'First dynamic resolution', 
     description: 'Issued by dummy web API. Dynamic data rocks.', 
     documents: ['a doc'], 
     voting:{ 'jem': -1 }, 
     status: 'PENDING' 
     }, { 
     type: 'voting', 
     title: 'Other dynamic resolution', 
     description: 'Issued by dummy web API. We know Jem is proud.', 
     documents: ['another doc'], 
     voting:{ 'jem': -1 }, 
     status: 'PENDING' 
     }] 
    ); 
    }, 1000); 
}); 

// Compile stops here: Property 'first' does not exist on type Observable<{}> 
// Original mistake: it's "obs.first().subscribe(..." 
obs.first(data => { 
    console.log('data feteched'); 
}); 
+0

所以..代碼是無關緊要的? – Blauhirn

+0

是的,不會編譯和Webstorm抱怨這一點。一直在使用observables的年齡,現在這個enw項目聲明.first(和其他操作符/可觀察屬性)未知。 – Jem

+0

剛剛添加了一個示例代碼片段 – Jem

回答

2

你必須導入每個觀察到的方法或操作員這樣

的方法import 'rxjs/add/observable/of'; 操作員import 'rxjs/add/operator/map';

+0

嗨@ Ikhtiyor,謝謝,但那也不管用。它修復了編譯問題,但是如果以這種方式導入,我使用的「.first()」操作符根本不會觸發:import'rxjs/add/operator/first'; – Jem

+0

等待,似乎我跳過鏈接「訂閱」到「第一」,就像.first()。subscribe((...)=> {...})...讓我看看 – Jem

+0

好吧,一直在尋找像在錯誤的地方瘋狂。我忘了.subscribe鏈接。謝謝你的時間 :-) – Jem

相關問題