我正在尝试在 Angular 2 中实现动态表单。我在动态表单中添加了删除和取消等附加功能。我已遵循此文档:https://angular.io/docs/ts/latest/cookbook/dynamic-form.html
https://i.stack.imgur.com/aXVYJ.png
我对代码做了一些更改。我在这里遇到错误。
我该如何解决这个错误?
你可以在这里找到完整的代码: http://plnkr.co/edit/SL949g1hQQrnRUr1XXqt?p=preview ,它在 plunker 中工作,但在我的本地系统中没有。
html代码:
<div>
<form [formGroup]="form">
<div *ngFor="let question of questions" class="form-row">
<label [attr.for]="question.key">{{question.label}}</label>
<div [ngSwitch]="question.controlType">
<input *ngSwitchCase="'textbox'" [formControlName]="question.key"
[id]="question.key" [type]="question.type" [(ngModel)]="question.value">
<select [id]="question.key" [(ngModel)]="question.value" *ngSwitchCase="'dropdown'" [formControlName]="question.key" >
<option *ngFor="let opt of question.options" [ngValue]="opt.key" >{{opt.value}}</option>
</select>
<input *ngSwitchCase="'checkbox'" [(ngModel)]="question.value"
[id]="question.key" [type]="question.type" (change)="question.value = ck.checked" #ck [ngModelOptions]="{standalone: true}">
</div>
<div class="errorMessage" *ngIf="!form.controls[question.key].valid">{{question.label}} is required</div>
</div>
<div class="form-row">
<button type="submit" [disabled]="!form.valid" (click)="onSubmit()">Save</button>
<button type="button" class="btn btn-default" (click)="cancel()">Cancel</button>
<button type="button" class="btn btn-default" (click)="clear()">Clear</button>
</div>
</form>
<div *ngIf="payLoad" class="form-row">
<strong>Saved the following values</strong><br>{{payLoad}}
</div>
</div>
组件代码:
import { Component, Input, OnInit } from '@angular/core';
import { FormGroup, REACTIVE_FORM_DIRECTIVES } from '@angular/forms';
import { QuestionBase } from './question-base';
import { QuestionControlService } from './question-control.service';
import { ControlGroup } from '@angular/common';
import {ChangeDetectorRef} from '@angular/core';
import { FormsModule } from '@angular/forms';
@Component({
selector: 'dynamic-form',
templateUrl: 'app/dynamicform/form.component.html',
directives: [REACTIVE_FORM_DIRECTIVES],
providers: [QuestionControlService]
})
export class DynamicFormComponent implements OnInit {
@Input() questions: QuestionBase<any>[] = [];
form: FormGroup;
payLoad:any;
payLoad2:any;
questiont: QuestionBase<any>;
questiond: QuestionBase<any>;
constructor(private qcs: QuestionControlService, private cdr: ChangeDetectorRef) { }
ngOnInit() {
this.form = this.qcs.toFormGroup(this.questions);
console.log("Form Init",this.questions);
this.questiont = JSON.parse(JSON.stringify(this.questions));
this.questiond = JSON.parse(JSON.stringify(this.questions));
}
onSubmit() {
this.payLoad = JSON.stringify(this.form.value);
this.payLoad2=this.payLoad;
this.questiont = JSON.parse(JSON.stringify(this.questions));
console.log("Submitted data",this.questions);
}
cancel(){
console.log("Canceled");
this.questions = JSON.parse(JSON.stringify(this.questiont));
}
clear(){
this.questions = JSON.parse(JSON.stringify(this.questiond));
this.questiont = JSON.parse(JSON.stringify(this.questiond));
console.log("Cleared");
this.cdr.detectChanges();
}
}
想出快速解决方案,像这样更新您的@NgModule 代码:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
来源:Can’t bind to ‘ngModel’ since it isn’t a known property of ‘input’
为了在使用 AppModules (NgModule) 时使 ngModel 工作,您必须在 AppModule 中导入 FormsModule。
像这样:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, FormsModule],
bootstrap: [AppComponent]
})
export class AppModule {}
我升级到 RC5 后遇到了类似的错误;即Angular 2:不能绑定到'ngModel',因为它不是'input' 的已知属性。
Plunker 上的代码向您展示了使用 Angular2 RC4,但 https://angular.io/docs/ts/latest/cookbook/dynamic-form.html 处的示例代码使用的是 RC5 中的 NGModule。 NGModules 是从 RC4 到 RC5 的重大变化。
本页介绍了从 RC4 到 RC5 的迁移:https://angular.io/docs/ts/latest/cookbook/rc4-to-rc5.html
我希望这可以解决您遇到的错误并帮助您朝着正确的方向前进。
简而言之,我必须在 app.module.ts 中创建一个 NGModule:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
然后我更改了 main.ts 以使用该模块:
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';
platformBrowserDynamic().bootstrapModule(AppModule);
当然,我还需要更新 package.json 中的依赖关系。这是我来自 package.json 的依赖项。诚然,我从其他来源(可能是 ng 文档示例)将它们拼凑在一起,因此您的里程可能会有所不同:
...
"dependencies": {
"@angular/common": "2.0.0-rc.5",
"@angular/compiler": "2.0.0-rc.5",
"@angular/core": "2.0.0-rc.5",
"@angular/forms": "0.3.0",
"@angular/http": "2.0.0-rc.5",
"@angular/platform-browser": "2.0.0-rc.5",
"@angular/platform-browser-dynamic": "2.0.0-rc.5",
"@angular/router": "3.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.2",
"@angular/upgrade": "2.0.0-rc.5",
"systemjs": "0.19.27",
"core-js": "^2.4.0",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12",
"angular2-in-memory-web-api": "0.0.15",
"bootstrap": "^3.3.6"
},
...
我希望这有助于更好。 :-)
import {FormControl,FormGroup} from '@angular/forms';
import {FormsModule,ReactiveFormsModule} from '@angular/forms';
您还应该添加缺少的。
您刚刚添加 FormsModule
并将 FormsModule
导入到您的 app.module.ts
文件中。
import { FormsModule } from '@angular/forms';
imports: [
BrowserModule, FormsModule
],
只需在您的 app.module.ts
中添加上述两行。它工作正常。
您需要在 @NgModule 装饰器中导入 FormsModule,@NgModule 存在于您的 moduleName.module.ts 文件中。
import { FormsModule } from '@angular/forms';
@NgModule({
imports: [
BrowserModule,
FormsModule
],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
跟随步骤
app.module.ts
.
从“@angular/forms”导入 { FormsModule };
.
表单模块
进口
进口:[ BrowserModule,FormsModule ],
.
最终结果将如下所示
.....
import { FormsModule } from '@angular/forms';
.....
@NgModule({
.....
imports: [
BrowserModule, FormsModule
],
.....
})
为了能够使用 'ngModule'
,需要将 'FormsModule'
(来自 @angular/forms
)添加到 AppModule
中的 import[]
数组中(在 CLI 项目中应该默认存在)。
首先从 angular lib 导入 FormsModule 并在 NgModule 下在导入中声明它
import { FormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
您需要将 @angular/forms 依赖项导入到您的模块中。
如果您使用的是 npm,请安装依赖项:
npm install @angular/forms --save
将其导入您的模块:
import {FormsModule} from '@angular/forms';
@NgModule({
imports: [.., FormsModule,..],
declarations: [......],
bootstrap: [......]
})
如果您使用 SystemJs 加载模块
'@angular/forms': 'node_modules/@angular/forms/bundles/forms.umd.js',
现在您可以将 [(ngModel)] 用于两种数据绑定方式。
由于某种原因,在 Angular 6 中简单地导入 FormsModule 并没有解决我的问题。最终解决我的问题的是添加
import { CommonModule } from '@angular/common';
@NgModule({
imports: [CommonModule],
})
export class MyClass{
}
假设,您的旧 app.module.ts 可能与此类似:
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
现在在你的 app.module.ts 中导入 FormsModule
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
http://jsconfig.com/solution-cant-bind-ngmodel-since-isnt-known-property-input/
如果您使用 Karma,此答案可能会对您有所帮助:
我已经完全按照@wmnitin 的回答中提到的那样做了,但错误总是存在。当使用“ng serve”而不是“karma start”时,它可以工作!
它在 Angular 教程中有所描述:https://angular.io/tutorial/toh-pt1#the-missing-formsmodule
您必须导入 FormsModule
并将其添加到您的 @NgModule
声明中的导入。
import { FormsModule } from '@angular/forms';
@NgModule({
declarations: [
AppComponent,
DynamicConfigComponent
],
imports: [
BrowserModule,
AppRoutingModule,
FormsModule
],
providers: [],
bootstrap: [AppComponent]
})
不定期副业成功案例分享
FormsModule
导入到您已在其中声明组件的同一NgModule
中。简单地说“让您的 NgModule 看起来像这样”并不是一个很好的答案。