gpt4 book ai didi

angular - this.form.get 不是 Angular 4 中的函数

转载 作者:太空狗 更新时间:2023-10-29 17:26:58 24 4
gpt4 key购买 nike

我开发了一个 Angular 4 应用程序,在将数据绑定(bind)到表单时遇到了问题。绑定(bind)代码似乎没问题,不确定是什么问题。当我调试应用程序时,我可以看到结果已正确填充在以下代码行 this.editMovieForm = result; 中。在 setFormValues() 方法中。当我检查控制台窗口时,我看到以下错误

EditmovieComponent.html:1 ERROR TypeError: _this.form.get is not a function
at forms.es5.js:4907
at Array.forEach (<anonymous>)
at FormGroupDirective.webpackJsonp.../../../forms/@angular/forms.es5.js.FormGroupDirective._updateDomValue (forms.es5.js:4906)
at FormGroupDirective.webpackJsonp.../../../forms/@angular/forms.es5.js.FormGroupDirective.ngOnChanges (forms.es5.js:4774)
at checkAndUpdateDirectiveInline (core.es5.js:10840)
at checkAndUpdateNodeInline (core.es5.js:12341)
at checkAndUpdateNode (core.es5.js:12284)
at debugCheckAndUpdateNode (core.es5.js:13141)
at debugCheckDirectivesFn (core.es5.js:13082)
at Object.eval [as updateDirectives] (EditmovieComponent.html:1)


ERROR Error: Uncaught (in promise): TypeError: _this.editMovieForm.patchValue is not a function
TypeError: _this.editMovieForm.patchValue is not a function
at main.bundle.js:446
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invoke (polyfills.bundle.js:2908)
at Object.onInvoke (vendor.bundle.js:146628)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invoke (polyfills.bundle.js:2907)
at Zone.webpackJsonp.../../../../zone.js/dist/zone.js.Zone.run (polyfills.bundle.js:2658)
at polyfills.bundle.js:3389
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invokeTask (polyfills.bundle.js:2941)
at Object.onInvokeTask (vendor.bundle.js:146619)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invokeTask (polyfills.bundle.js:2940)
at Zone.webpackJsonp.../../../../zone.js/dist/zone.js.Zone.runTask (polyfills.bundle.js:2708)
at main.bundle.js:446
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invoke (polyfills.bundle.js:2908)
at Object.onInvoke (vendor.bundle.js:146628)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invoke (polyfills.bundle.js:2907)
at Zone.webpackJsonp.../../../../zone.js/dist/zone.js.Zone.run (polyfills.bundle.js:2658)
at polyfills.bundle.js:3389
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invokeTask (polyfills.bundle.js:2941)
at Object.onInvokeTask (vendor.bundle.js:146619)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invokeTask (polyfills.bundle.js:2940)
at Zone.webpackJsonp.../../../../zone.js/dist/zone.js.Zone.runTask (polyfills.bundle.js:2708)
at resolvePromise (polyfills.bundle.js:3340)
at polyfills.bundle.js:3392
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invokeTask (polyfills.bundle.js:2941)
at Object.onInvokeTask (vendor.bundle.js:146619)
at ZoneDelegate.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneDelegate.invokeTask (polyfills.bundle.js:2940)
at Zone.webpackJsonp.../../../../zone.js/dist/zone.js.Zone.runTask (polyfills.bundle.js:2708)
at drainMicroTaskQueue (polyfills.bundle.js:3118)
at ZoneTask.webpackJsonp.../../../../zone.js/dist/zone.js.ZoneTask.invokeTask [as invoke] (polyfills.bundle.js:3019)
at invokeTask (polyfills.bundle.js:4056)
at XMLHttpRequest.globalZoneAwareCallback (polyfills.bundle.js:4082)

editmovie.component.ts

    import { Component, OnInit } from '@angular/core';
import {Router,ActivatedRoute,Params} from '@angular/router';
import {FormGroup,FormControl,FormBuilder} from '@angular/forms';
import {IMovie} from '../movie.interface';
import {MovieService} from '../movie.service';

@Component({
selector: 'app-editmovie',
moduleId: module.id,
templateUrl: './editmovie.component.html',
styleUrls: ['./editmovie.component.css'],
providers:[MovieService]
})
export class EditmovieComponent implements OnInit {

public selectMovieId: number = 0;
public sub : any;
public editMovieForm: FormGroup;
public movie: IMovie;

constructor(private _route: ActivatedRoute,
private fb: FormBuilder,
private movieService : MovieService ) {
this.initializeFormModel();
}

ngOnInit() {
this.sub = this._route.params.subscribe(params => {
this.selectMovieId = + params['id']; // (+) converts string to number
});
this.initializeFormModel();

if(this.selectMovieId && this.selectMovieId > 0) {
this.setFormValues();
}
}


initializeFormModel()
{
this.editMovieForm = this.fb.group({
movieId : [''],
title: [''],
releaseYear: [''],
plot: [''],
movieLength: ['']

})

}

setFormValues(){
var existingMovie: IMovie;
this.movieService.getMovie(this.selectMovieId).then((result: any)=> {
existingMovie = result;
this.movie = existingMovie;
this.editMovieForm = result;
this.editMovieForm.patchValue(existingMovie, { onlySelf: true });
});

}


}

editmovie.component.html

<form [formGroup] = "editMovieForm">
<div class ="col-sm-12">
<div class="form-group col-sm-6">
<label for="movie-title" class="control-label">Title</label>
<input type="text" class="form-control" id= "movie-title" placeholder="Title of Movie" formControlName="title" maxlength="100">
</div>
<div class="form-group col-sm-6">
<label for="release-year" class="control-label">Release Year</label>
<input type="text" class="form-control" id="release-year" placeholder="Release Year" formControlName="releaseYear" maxlength="4">
</div>
</div>
<div class ="col-sm-12">
<div class="form-group col-sm-6">
<label for="movie-plot" class="control-label">Plot</label>
<input type="text" class="form-control" id= "movie-plot" placeholder="Plot" formControlName="plot" maxlength="100">
</div>
<div class="form-group col-sm-6">
<label for="movie-length" class="control-label">Movile Length</label>
<input type="text" class="form-control" id= "movie-length" placeholder="Movie Length" formControlName="movieLength" maxlength="100">
</div>
</div>


</form>

最佳答案

根据你的问题,

I can see the result is populated correctly it the following line of code this.editMovieForm = result; in setFormValues() method . When I check the console window , I see the following error...

我认为按照粗体行,您会发现错误。

FormBuilder 如下创建 editMovieForm,我假设有一堆方法被添加到实例对象中,这些方法是它运行所必需的。

this.editMovieForm = this.fb.group({
movieId : [''],
title: [''],
releaseYear: [''],
plot: [''],
movieLength: ['']
})

但是,您正在将 movieService.getMovie() 的结果分配给变量。

我大胆猜测 result 不是 FormGroup 对象,如果是这样,它不再像这样运行也就不足为奇了。

this.movieService.getMovie(this.selectMovieId).then((result: any)=> {
...
this.editMovieForm = result;
...
});

请尝试注释掉该行并查看错误是否消失。

我想您会发现,仅需在 patchValue 后面的行中将结果添加到表单中。

this.editMovieForm.patchValue(existingMovie, { onlySelf: true });

引用 Updating Angular 2 Forms with patchValue or setValue

关于angular - this.form.get 不是 Angular 4 中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47398802/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com