Angular 4 Reactive Form Enable Field 刷新页面后

Angular 4 Reactive Form Enable Field After refresh page

我在 angular 4

中声明了一个响应式
this.userForm = this.fb.group({
  "id": [user ? user.id : ""],
  "profile": this.fb.group({
    "email": [user && user.profile.email ? { value: user.profile.email, disabled: true } : "", Validators.compose([Validators.required, Validators.email])],
  }),

  "username": [user && user.username ? { value: user.username, disabled: true } : "", Validators.compose([Validators.required, GlobalValidator.usernameFormat])],
})

默认情况下,如果我的表单填写了数据,表单字段(电子邮件、用户名)将被禁用。 我面临的问题是,如果我刷新页面,表单字段显示为已启用。

(已编辑)

    ngOnInit() {
       this.buildForm()
       if (this.activatedRoute.snapshot.params.id) {
         this.service.getUser(Number(this.activatedRoute.snapshot.params.id)).subscribe((user) => {
          this.buildForm(user)
        }) 
       }
     }
     buildForm(user?:any){
       this.userForm = this.fb.group({
         "id": [user ? user.id : ""],
         "profile": this.fb.group({
          "email": [user && user.profile.email ? { value: user.profile.email, disabled: true } : "", Validators.compose([Validators.required, Validators.email])],
      }),

      "username": [user && user.username ? { value: user.username, disabled: true } : "", Validators.compose([Validators.required, GlobalValidator.usernameFormat])],
    })

}

为了解决这个问题,我更改了我的代码:

之前:

"username": [user && user.username ? { value: user.username, disabled: true } : "", Validators.compose([Validators.required, GlobalValidator.usernameFormat])],

之后:

this.userForm = this.fb.group({
username : this.fb.control("")
})
if(user){
this.userForm.get("username").setValue(user.username)
this.userForm.get("username").disable()
}

我有同样的问题,但是调用 this.userForm.get("username").disable() 并没有解决它,因为我正在重新加载我的视图(使用 router.navigate())。

就我而言,我必须在重新加载之前重置表单:

this.userForm = 未定义; 这.router.navigate([路径]);