admin管理员组文章数量:1346304
I have been working on my app. I want to use ReactiveFormsModule module but I am getting
Error: Unexpected module 'ReactiveFormsModule' declared by the module 'AppModule'
I have installed angular/forms into my project but nothing seems to work. Any idea?
My ponent.ts file
import {Component} from '@angular/core';
import {FormGroup, FormControl} from '@angular/forms';
@Component({
selector: 'app-crm-search',
templateUrl: './crm-searchponent.html',
styleUrls: ['./crm-searchponent.css'],
})
export class CrmSearchComponent{
constructor() {
}
userForm = new FormGroup({
searchTerm: new FormControl()
});
onSubmit(){
console.log(this.userForm.value());
}
}
My app.module.ts
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {HttpModule} from '@angular/http';
import {AlertModule} from 'ng2-bootstrap';
import {Select2Module} from 'ng2-select2';
import {RoutingModule} from './routing.module';
import {ReactiveFormsModule} from '@angular/forms';
import {AppComponent} from './appponent';
import {NavBarComponent} from './ponents/nav-bar/nav-barponent';
import {IndexComponent} from './index/indexponent';
import {CrmIndexComponent} from './crm/crm-index/crm-indexponent';
import {CrmSearchComponent} from './crm/crm-search/crm-searchponent';
import {CrmSearchResultComponent} from './crm/crm-search-result/crm-search-resultponent';
@NgModule({
declarations: [
AppComponent,
NavBarComponent,
IndexComponent,
CrmIndexComponent,
CrmSearchComponent,
CrmSearchResultComponent,
ReactiveFormsModule
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
RoutingModule,
Select2Module,
[AlertModule.forRoot()]
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
I have been working on my app. I want to use ReactiveFormsModule module but I am getting
Error: Unexpected module 'ReactiveFormsModule' declared by the module 'AppModule'
I have installed angular/forms into my project but nothing seems to work. Any idea?
My ponent.ts file
import {Component} from '@angular/core';
import {FormGroup, FormControl} from '@angular/forms';
@Component({
selector: 'app-crm-search',
templateUrl: './crm-search.ponent.html',
styleUrls: ['./crm-search.ponent.css'],
})
export class CrmSearchComponent{
constructor() {
}
userForm = new FormGroup({
searchTerm: new FormControl()
});
onSubmit(){
console.log(this.userForm.value());
}
}
My app.module.ts
import {BrowserModule} from '@angular/platform-browser';
import {NgModule} from '@angular/core';
import {FormsModule} from '@angular/forms';
import {HttpModule} from '@angular/http';
import {AlertModule} from 'ng2-bootstrap';
import {Select2Module} from 'ng2-select2';
import {RoutingModule} from './routing.module';
import {ReactiveFormsModule} from '@angular/forms';
import {AppComponent} from './app.ponent';
import {NavBarComponent} from './ponents/nav-bar/nav-bar.ponent';
import {IndexComponent} from './index/index.ponent';
import {CrmIndexComponent} from './crm/crm-index/crm-index.ponent';
import {CrmSearchComponent} from './crm/crm-search/crm-search.ponent';
import {CrmSearchResultComponent} from './crm/crm-search-result/crm-search-result.ponent';
@NgModule({
declarations: [
AppComponent,
NavBarComponent,
IndexComponent,
CrmIndexComponent,
CrmSearchComponent,
CrmSearchResultComponent,
ReactiveFormsModule
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
RoutingModule,
Select2Module,
[AlertModule.forRoot()]
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Share
Improve this question
edited Jul 19, 2017 at 0:45
Daniel
3,5143 gold badges36 silver badges47 bronze badges
asked Jul 13, 2017 at 21:59
NashPLNashPL
4811 gold badge4 silver badges20 bronze badges
1 Answer
Reset to default 13You need to add it to your imports
, rather than your declarations
本文标签: javascriptAngular2 ReactiveFormsModule Unexpected moduleStack Overflow
版权声明:本文标题:javascript - Angular2 ReactiveFormsModule Unexpected module - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829847a2546322.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论