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');
});
所以..代碼是無關緊要的? – Blauhirn
是的,不會編譯和Webstorm抱怨這一點。一直在使用observables的年齡,現在這個enw項目聲明.first(和其他操作符/可觀察屬性)未知。 – Jem
剛剛添加了一個示例代碼片段 – Jem