标签: angular redux
我使用ng2-redux和angular2-hmr模块。如果开发人员更改项目中的任何文件,我会尝试更新ng2-redux状态。
如果开发人员更改了任何文件,则调用hmrOnDestroy。我在此方法中保存当前状态(let state = this.redux.getState())。 this.redux是NgRedux的一个实例。然后调用hmrOnInit,我应该更新此方法中的当前状态。怎么做?没有方法this.redux.setState()
let state = this.redux.getState()
this.redux
NgRedux