Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angular/31.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Angular 管道';ngrxPush';找不到_Angular_Ngrx_Ngrx Store - Fatal编程技术网

Angular 管道';ngrxPush';找不到

Angular 管道';ngrxPush';找不到,angular,ngrx,ngrx-store,Angular,Ngrx,Ngrx Store,我是NgRx的新手,过去一周我一直在学习 因此,我试图检查推管和let指令 根据NgRx文件,该家伙的安装将使用以下命令: yarn add github:ngrx/component-builds.git 我的代码如下: <ons-list-item expandable *ngFor="let user of users$ | ngrxPush"> <!-- code here --> </ons-list-item> 在那之

我是NgRx的新手,过去一周我一直在学习

因此,我试图检查推管let指令

根据NgRx文件,该家伙的安装将使用以下命令:

yarn add github:ngrx/component-builds.git
我的代码如下:

<ons-list-item expandable *ngFor="let user of users$ | ngrxPush">
 <!-- code here -->
</ons-list-item>

在那之后,我试着找到我需要导入的模块来拥有这个管道。要使用异步管道,我只需要导入CommonModule


你知道我应该导入什么才能让它工作吗?此部分中的文档似乎不太清楚。

您必须导入
反应组件模块

从'@ngrx/component'导入{ReactiveComponentModule}


文档

您必须导入
反应组件模块

从'@ngrx/component'导入{ReactiveComponentModule}


文档

非常感谢=)非常感谢=)文档更新:文档更新: