我正在尝试在角度 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) 中的错误:算术运算的左侧必须是“任何”、“数字”或枚举类型.
谁能帮我解决我在这方面做错了什么