要使用Angular 9和@ngrx/store schematics,首先需要安装Angular CLI和@ngrx/store。
请按照以下步骤进行操作:
npm install -g @angular/cli
ng new my-app
cd my-app
ng add @ngrx/store
这将安装@ngrx/store和相关的依赖项。
ng generate store AppState --root --module app.module.ts
这将在src/app目录下创建一个名为AppState的存储器。
import { Component } from '@angular/core';
import { Store } from '@ngrx/store';
import { Observable } from 'rxjs';
@Component({
selector: 'app-root',
template: `
Count: {{ count$ | async }}
`,
})
export class AppComponent {
count$: Observable;
constructor(private store: Store<{ count: number }>) {
this.count$ = store.select('count');
}
increment() {
this.store.dispatch({ type: 'INCREMENT' });
}
decrement() {
this.store.dispatch({ type: 'DECREMENT' });
}
}
在这个示例中,我们定义了一个count$可观察对象,它从存储器中选择了一个名为'count'的属性。我们还定义了两个方法来触发'INCREMENT'和'DECREMENT'操作。
ng serve
现在,当您访问http://localhost:4200时,您将看到一个计数器,并且可以通过点击按钮来增加或减少计数。这个计数器的状态将通过@ngrx/store进行管理。