я пытаюсь использовать фильтр в angular 4, это мой код
import { Component, OnInit } from '@angular/core';
import { range } from 'rxjs/observable/range';
import { map, scan, filter, tap } from 'rxjs/operators';
@Component({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent implements OnInit {
ngOnInit(){
this.rxjs();
}
rxjs(){
const source$ = range(1, 10);
source$.pipe(
filter(n => n % 2 !== 0),
tap(n => console.log('filtered value: ' + n)),
map(n => n * n),
tap(n => console.log('squared value: ' + n)),
scan((acc,s) => acc + s, 0)
)
.subscribe(v => console.log(`sum of squared values : ${v}`));
}
}
это моя угловая версия, которую я узнал, используя команду ng --version
@angular/cli: 1.4.10
node: 8.9.1
os: win32 x64
@angular/animations: 4.4.7
@angular/common: 4.4.7
@angular/compiler: 4.4.7
@angular/core: 4.4.7
@angular/forms: 4.4.7
@angular/http: 4.4.7
@angular/platform-browser: 4.4.7
@angular/platform-browser-dynamic: 4.4.7
@angular/router: 4.4.7
@angular/cli: 1.4.10
@angular/compiler-cli: 4.4.7
@angular/language-service: 4.4.7
typescript: 2.3.4
но когда я компилирую, я получаю такую ошибку
ОШИБКА в E: /angular-mock/routes/src/app/app.component.ts (19, 19): левая часть арифметической операции должна иметь тип 'any', 'number' или тип enum.
Может кто-нибудь помочь мне в том, что я делаю неправильно в этом