Angular 6 lint select 已弃用
Angular 6 ng lint select is deprecated
我得到了 tslint waring select is deprecated: from 6.1.0. Use the pipeable
'select' operator instead.
我的选择器如下所示
private availableStudents$ = this.store.select(getAvailableStudents);
还有我的package.json
"rxjs": "^6.0.0"
"tslint": "~5.9.1"
"typescript": "^2.9.2"
"@angular/cli": "~6.1.2
尝试以下操作:
private availableStudents$ = this.store.pipe(select(getAvailableStudents));
上面使用了警告中建议的管道运算符。
并且一定要导入它:
import { Store, select } from '@ngrx/store';
我得到了 tslint waring select is deprecated: from 6.1.0. Use the pipeable
'select' operator instead.
我的选择器如下所示
private availableStudents$ = this.store.select(getAvailableStudents);
还有我的package.json
"rxjs": "^6.0.0"
"tslint": "~5.9.1"
"typescript": "^2.9.2"
"@angular/cli": "~6.1.2
尝试以下操作:
private availableStudents$ = this.store.pipe(select(getAvailableStudents));
上面使用了警告中建议的管道运算符。
并且一定要导入它:
import { Store, select } from '@ngrx/store';