ngrx run:通过减少动作产生效果 源码
NgRx运行 从NgRx减速器返回副作用作为数据 概括 效果在化简器的return语句中描述为数据 当减速器返回时,效果将运行 由效果创建的事件将转换为动作,然后分派回商店 因此,您可以通过简单的操作->减速器->(状态+效果)循环来编写Web应用程序 reducer负责整个业务逻辑,而不是使用@Effect对其进行拆分 例子 export function reducer ( state : State , action : Action ) { switch ( action . type ) { case ActionTypes . loadBlogPosts : return run ( state , { type : '[Blog] Fetch blog posts' , operation : ( ) => fetch
文件列表
ngrx-run-main.zip
(预估有个38文件)
ngrx-run-main
tsconfig.lib.json
564B
package.json
1KB
tslint.json
3KB
.prettierrc
70B
jest.config.js
440B
tsconfig.spec.json
347B
angular.json
629B
package-lock.json
590KB
tsconfig.json
768B
暂无评论