我的代码环境是Angular 9,当我设置反应式表单时,我遇到了这个错误:
我在Google和StackOverflow中做了一些研究,但在使用Angular 9时没有发现同样的问题,然而,根据其他帖子的建议,我确实将ReactiveFormsModule导入到app.module.ts、routing.module.ts以及recipe-edit.component.spec.ts文件中。然而,错误不断出现。我附上我的代码,有人能给我建议吗?
app.module.ts
import { RecipeService } from './recipes/recipe.service';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule} from '@angular/forms';
import { RoutingModule } from './routing.module';
import { ShoppingListService } from './shopping-list/shopping-list.service';
import { AppComponent } from './app.component';
import { RecipesComponent } from './recipes/recipes.component';
import { RecipeListComponent } from './recipes/recipe-list/recipe-list.component';
import { RecipeItemComponent } from './recipes/recipe-list/recipe-item/recipe-item.component';
import { RecipeDetailComponent } from './recipes/recipe-detail/recipe-detail.component';
import { HeaderComponent } from './header/header.component';
import { ShoppingListComponent } from './shopping-list/shopping-list.component';
import { ShoppingEditComponent } from './shopping-list/shopping-edit/shopping-edit.component';
import { DropdownDirective } from './shared/dropdown.directive';
@NgModule({
declarations: [
AppComponent,
RecipesComponent,
RecipeListComponent,
RecipeItemComponent,
RecipeDetailComponent,
HeaderComponent,
ShoppingListComponent,
ShoppingEditComponent,
DropdownDirective
],
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule,
RoutingModule
],
providers: [ShoppingListService, RecipeService],
bootstrap: [AppComponent]
})
export class AppModule { }
路由.模块. ts
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { RecipeStartComponent } from './recipes/recipe-start/recipe-start.component';
import { RecipeDetailComponent } from './recipes/recipe-detail/recipe-detail.component';
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { ShoppingListComponent } from './shopping-list/shopping-list.component';
import { RecipesComponent } from './recipes/recipes.component';
import { RecipeEditComponent } from './recipes/recipe-edit/recipe-edit.component';
const routes: Routes = [
{path: '', redirectTo: '/recipes', pathMatch: 'full'},
{path: 'recipes', component: RecipesComponent, children: [
{path: '', component: RecipeStartComponent},
{path: 'new', component: RecipeEditComponent},
{path: ':id', component: RecipeDetailComponent},
{path: ':id/edit', component: RecipeEditComponent}
]},
{path: 'shopping-list', component: ShoppingListComponent}
];
@NgModule({
imports: [RouterModule.forRoot(routes), FormsModule, ReactiveFormsModule],
exports: [RouterModule]
})
export class RoutingModule {}
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute, Params } from '@angular/router';
import { FormGroup, FormControl } from '@angular/forms';
import { RecipeService } from './../recipe.service';
@Component({
selector: 'app-recipe-edit',
templateUrl: './recipe-edit.component.html',
styleUrls: ['./recipe-edit.component.css']
})
export class RecipeEditComponent implements OnInit {
id: number;
editMode = false;
recipeForm: FormGroup;
constructor(private route: ActivatedRoute, private recipeService: RecipeService) { }
ngOnInit() {
this.route.params
.subscribe(
(paras: Params) => {
this.id = +paras.id;
this.editMode = paras.id != null;
this.initForm();
}
);
}
private initForm() {
let name = '';
let imagePath = '';
let description = '';
if (this.editMode) {
const editRecipe = this.recipeService.getRecipe(this.id);
name = editRecipe.name;
imagePath = editRecipe.imagePath;
description = editRecipe.desc;
}
this.recipeForm = new FormGroup({
name: new FormControl(name),
imagePath: new FormControl(imagePath),
description: new FormControl(description)
});
}
onSubmit() {
console.log(this.recipeForm);
}
}
recipe-edit.component.html
<div class="row">
<div class="col-xs-12">
<form (ngSubmit) = "onSubmit()" [formGroup] = "recipeForm" >
<div class="row">
<div class="col-xs-12">
<button class="btn btn-success" type = "submit"> Save </button>
<button class="btn btn-danger" type = "button"> Cancel </button>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<label for="name"> Recipe Name</label>
<input
type = "text"
id = "name"
formControlName="name"
class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<label for="imagePath"> Image URL </label>
<input
type = "text"
id = "imagePath"
formControlName="imagePath"
class="form-control">
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<img src="" class="img-reponsive">
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="form-group">
<label for="description"> Description </label>
<textarea
type = "text"
id = "description"
formControlName="description"
class="form-control"
rows = "6"></textarea>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<div class="row">
<div class="col-xs-8">
<input
type = "text"
class = "form-control">
</div>
<div class="col-xs-2">
<input
type = "number"
class = "form-control">
</div>
<div class="col-xs-2">
<button class="btn btn-danger" type = "button"> X </button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
配方-编辑.组件.规格
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { RecipeEditComponent } from './recipe-edit.component';
import { ReactiveFormsModule, FormsModule } from '@angular/forms';
describe('RecipeEditComponent', () => {
let component: RecipeEditComponent;
let fixture: ComponentFixture<RecipeEditComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ RecipeEditComponent ],
imports: [ReactiveFormsModule, FormsModule]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(RecipeEditComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
需要在app.module中导入以下内容。ts文件:
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
formGroup是名为FormGroupDirective的指令的选择器,它是ReactiveFormsModule的一部分,用于将formGroup数据绑定到组件元素。
然后将其添加到模块的imports数组中,如下所示:
imports: [
BrowserModule,
AppRoutingModule,
FormsModule,
ReactiveFormsModule,
HttpClientModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
import {ReactiveFormsModule, FormsModule } from '@angular/forms';
import { RecipeService } from './recipes/recipe.service';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule} from '@angular/forms';
import { RoutingModule } from './routing.module';
import { ShoppingListService } from './shopping-list/shopping-list.service';
import { AppComponent } from './app.component';
// Add following line:
import { RecipeEditComponent } from './recipes/recipe-edit/recipe-edit.component'; // add this
import { RecipesComponent } from './recipes/recipes.component';
import { RecipeListComponent } from './recipes/recipe-list/recipe-list.component';
import { RecipeItemComponent } from './recipes/recipe-list/recipe-item/recipe-item.component';
import { RecipeDetailComponent } from './recipes/recipe-detail/recipe-detail.component';
import { HeaderComponent } from './header/header.component';
import { ShoppingListComponent } from './shopping-list/shopping-list.component';
import { ShoppingEditComponent } from './shopping-list/shopping-edit/shopping-edit.component';
import { DropdownDirective } from './shared/dropdown.directive';
@NgModule({
declarations: [
AppComponent,
RecipesComponent,
RecipeEditComponent, // add this and the import line
RecipeListComponent,
RecipeItemComponent,
RecipeDetailComponent,
HeaderComponent,
ShoppingListComponent,
ShoppingEditComponent,
DropdownDirective
],
imports: [
BrowserModule,
FormsModule,
ReactiveFormsModule,
RoutingModule
],
providers: [ShoppingListService, RecipeService],
bootstrap: [AppComponent]
})
export class AppModule { }
否则,如果它属于另一个模块,则需要在其所属的模块中导入 FormsModule
和 ReactiveFormsModule
。
我不熟悉角度单元测试。。我正在尝试测试一个模态组件,但不断出现以下错误:“无法绑定到'formGroup',因为它不是'form'的已知属性。” 我尝试过将FormGroup、FormBuilder、Validator传递到测试提供程序中(因为它们是我正在测试的代码中使用的,所以我一次一个地将它们添加到一起),我还尝试将ReactiveFormsMoules添加到它中(与其他提供程序一起,而不与其
我尝试使用Ionic(angular framework)进行简单登录,但我遇到了这个错误,我不知道如何解决它 我搜索了所有人,当他们添加< code >反应式模块时,错误消失了,但当我添加时,错误仍然存在 the app.module.ts 控制器1.ts 我错过了什么吗?请帮助我,我正在处理这个错误
我试图在Angular中创建一个非常基本的表单(目前是一个标签和一个输入字段)。我知道这个问题在这里被问了很多次,但是尽管导入了FormsModule和ReactiveFormsModule,我仍然会得到这个错误,正如在Stackoverflow上多次提到的。 我的模块: 我的组件: 这是Stackblitz错误的打印屏幕:https://i.stack.imgur.com/teoyi.png 解
我是Angular 6的新手,正在研究ReactiveForms。获取此错误并无法编译。我已经看到了不同的解决方案,并在导入中添加了ReactiveFormsModule指令,就像解决方案中建议的那样,但它仍然显示了相同的错误。请帮忙。
------[解决了]----- 将更改为:(
并将它们添加到: 然后我创建了一个组件来导入: 它工作得很好,但是现在我添加了第二个组件,它从第一个组件中复制了import和form标记。为什么第二个组件会出现这个错误?app.module.ts文件确实导入了所需的模块,它们可以很好地处理第一个组件,但是第二个组件不行