能否请您告诉我如何在角度4中增加和减少计数器
我使用ngrx
进行状态管理。但是我无法递增和递减值
这是我的代码 https://stackblitz.com/edit/angular-q8nsfz?file=src%2Fapp%2Fapp.component.ts
incrementCounter() {
this.store.dispatch(new IncreamentCounter());
}
decrementCounter() {
this.store.dispatch(new DecrementCounter());
}
ngOnInit(){
this.counter =this.store.select('counterValue');
}
答案 0 :(得分:0)
写:
map $http_referer $root {
... some other regex matching /var/www/example.com/...;
}
看看会发生什么:计数器将变为{counter:-1}或{counter:1}
因此,请使用变量“竞争者”更改代码
<div class="container">
<button (click)="incrementCounter()">Increment</button>
<button (click)="decrementCounter()">Decrement</button>
{{(c | async | json)}}
</div>
ngOnInit(){
this.c =this.store.select('counterValue');
}