作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚升级到 ngrx/store 版本 8。我注意到 ng 更新已经删除了所有出现的 storeFreeze。也将其从 metaReducer 中删除。
所以我的问题是 - 为什么?
在 ngrx 8 上使用 storeFreeze 有问题吗?
在 ngrx8 之前:
import { ActionReducerMap, MetaReducer } from '@ngrx/store';
import { storeFreeze } from 'ngrx-store-freeze';
import * as fromGroupMember from './group-member.reducer';
import * as fromDirectoryForm from './directory-filter-form.reducer';
export const metaReducers: MetaReducer<IState>[] =
(localStorage && localStorage.getItem('production') === 'false') ? [storeFreeze] : [];
之后:
import { ActionReducerMap, MetaReducer } from '@ngrx/store';
import * as fromGroupMember from './group-member.reducer';
import * as fromDirectoryForm from './directory-filter-form.reducer';
export const metaReducers: MetaReducer<IState>[] =
(localStorage && localStorage.getItem('production') === 'false') ? [] : [];
最佳答案
如果您运行 ng update @ngrx/store
,这是迁移的一部分。它还应该添加 runtime checks作为替代品,因为它现在是 ngrx 的一部分:
@NgModule({
imports: [
StoreModule.forRoot(reducers, {
runtimeChecks: {
strictStateImmutability: true,
strictActionImmutability: true,
},
}),
],
})
export class AppModule {}
关于angular - storeFreeze 和 ngrx8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57004187/
我刚刚升级到 ngrx/store 版本 8。我注意到 ng 更新已经删除了所有出现的 storeFreeze。也将其从 metaReducer 中删除。 所以我的问题是 - 为什么? 在 ngrx
我是一名优秀的程序员,十分优秀!