博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[NgRx] Setting up NgRx Router Store and the Time-Travelling Debugger
阅读量:4983 次
发布时间:2019-06-12

本文共 748 字,大约阅读时间需要 2 分钟。

Make sure you have the@ngrx packages installed:

"@ngrx/data": "^8.0.1",    "@ngrx/effects": "^8.0.1",    "@ngrx/entity": "^8.0.1",    "@ngrx/router-store": "^8.0.1",    "@ngrx/store": "^8.0.1",    "@ngrx/store-devtools": "^8.0.1",

 

To enable time travel debugging, you need to import:

app.module.ts

imports: [    ...    StoreRouterConnectingModule.forRoot({      stateKey: "router", // key will be "router"      routerState: RouterState.Minimal // the content to be saved into store will be minimal    })  ],

 

Enable add reducer for router:

reducers/index.ts

import { routerReducer } from "@ngrx/router-store";export const reducers: ActionReducerMap
= { router: routerReducer};

 

转载于:https://www.cnblogs.com/Answer1215/p/11568193.html

你可能感兴趣的文章
小白学数据分析-----> 利用SPSS对DAU/MAU进行比率分析
查看>>
js中this与srcElement的区别
查看>>
第一个MyBatis程序
查看>>
.net 数据库缓存依赖:【实例与解释】
查看>>
Android Service小试 启动和停止service
查看>>
一天一个设计模式:适配器模式
查看>>
第5题 查找字符串中的最长回文字符串---Manacher算法
查看>>
HDOJ 1069 Monkey and Banana 解题报告
查看>>
11锚点与图像对象
查看>>
Ios中比较两个日期之间的时间差距
查看>>
jQuery基础选择器
查看>>
寒假作业03
查看>>
P1129 [ZJOI2007]矩阵游戏
查看>>
hdu2046 骨牌铺方格
查看>>
Linux下mysql启动失败
查看>>
同心圆闪烁扩散功能
查看>>
oracle 如何恢复误删的表记录数据
查看>>
Druid连接池错误(数据库版本问题)
查看>>
console对象-转
查看>>
洛谷 4216 BZOJ 4448 [SCOI2015]情报传递
查看>>