我找不到错误,设计redux可以正常工作并正确更新变量。 console.log(this.count)有效,但是订阅不会更新视图{{count}}
非常感谢。
import { Store } from '@ngrx/store';
import * as fromContador from '../logic.actions';
import { AppState } from '../app.reducer';
export class InputsComponent {
count: number;
constructor(private store: Store<AppState>) {
this.store.select('count').subscribe(function(contador){
this.count= count;
console.log("count:" + this.count);
});
}