angular – Angualr2错误:无法设置仅具有getter的#的属性值

前端之家收集整理的这篇文章主要介绍了angular – Angualr2错误:无法设置仅具有getter的#的属性值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
表格看起来像:
<form [ngFormModel]="myForm" (ngSubmit)="update()">

                <ion-label floating>First Name</ion-label>
                <ion-input type="text" id="fname" [ngFormControl]="fname"> 

   </form>

相关课程:

export class ProfilePage {
    myForm: ControlGroup;
    fname: AbstractControl;

    constructor(private _profile: Profile,fb: FormBuilder)  {

        this.myForm = fb.group({
            'fname': ['',Validators.compose([Validators.required,Validators.minLength(2),firstCharacter])]
        });

        this.fname = this.myForm.controls['fname'];


        Promise.all([this._profile.firstname,this._profile.lastname,this._profile.base64Image]).then(values => {
            this.fname.value = values[0];
         //   this.lname.value = values[1];

        });
    }

收到错误

EXCEPTION: Error: Uncaught (in promise): TypeError: Cannot set property value of #<AbstractControl> which has only a getter
我认为你应该使用FormGroup的setValue或patchValue方法.
this.myForm.patchValue({fname: firstName});

如果要有选择地仅更新某些字段,或使用setValue并更新所有字段,请使用patchValue

原文链接:https://www.f2er.com/angularjs/140594.html

猜你在找的Angularjs相关文章