无法识别角度NgRX动作



我已经使用NgRX创建了Angular应用程序。我添加了动作、减速器、服务和效果。但是在访问时,操作在组件代码中得到了以下错误。

错误:类型"typeof EmployeeAction"上不存在属性"GetEmployees"。

找到以下代码片段:

在职组件:

this.store.dispatch(new EmployeeAction.GetEmployees());

employee-actions.ts:

export class GetEmployees implements Action {
readonly type = GET_EMPLOYEES;
}
The entire App code will be available in this Github repository.
https://github.com/techvenky/AngularNgRx/tree/master/src

导入抽象类并尝试创建其属性的实例。GetEmployees它是一个类,导入它并转到它。因此,您的调度必须是这样的:this.store.dispatch(new GetEmployees());

此外,我还建议您从操作类构造函数的有效负载属性中删除readonly

相关内容

  • 没有找到相关文章

最新更新