11
import { map } from 'rxjs/operator/map';
let o = of(1, 2, 3, 4).pipe(
map((v) => v * 2)
);
Ama hata sorun burada ne var Error:(34, 5) TS2684:The 'this' context of type 'void' is not assignable to method's 'this' of type 'Observable<{}>'.
üretir?
bunu Google'a gönderebilecek diğer kullanıcılar için: 'first' ayrıca izin verilen bir operatördür – LudvigH
Teşekkürler! Bu, açısal malzemelerin [demo] (https://material.angular.io/components/autocomplete/examples) bileşenlerini denerken saatlerce sıkıştı. – Bnrdo
@ Bnrdo'nun izin verilmeyen eşdeğerlerinden 'map' ithal ediliyorlar, evet, ben de kafam karıştı. İyi şanslar –