初始化状态后,Redux devtools在角度应用程序中崩溃

时间:2019-07-11 09:38:11

标签: angular ngrx

我是一个带有ngrx存储的角度应用程序。在我的商店内部,我需要包含表单,但是redux devtools在状态初始化后崩溃(控制台中没有错误)。

为简单起见,这是我的状态初始化:

const initialState = {
  form: new FormGroup({
    name: new FormControl(null) // with this line, the redux devtools is crashing
  })
  //form: new FormGroup({}) // this is ok
}

请注意,如果没有定义name属性,那么redux devtools就可以了。

为什么redux devtools崩溃?

0 个答案:

没有答案