Angular 2 프로젝트에서 Angular Material Autocomplete 구성 요소 를 사용하려고합니다 . 템플릿에 다음을 추가했습니다.
<md-input-container>
<input mdInput placeholder="Category" [mdAutocomplete]="auto" [formControl]="stateCtrl">
</md-input-container>
<md-autocomplete #auto="mdAutocomplete">
<md-option *ngFor="let state of filteredStates | async" [value]="state">
{{ state }}
</md-option>
</md-autocomplete>
다음은 내 구성 요소입니다.
import {Component, OnInit} from "@angular/core";
import {ActivatedRoute, Router} from "@angular/router";
import {FormControl} from "@angular/forms";
@Component({
templateUrl: './edit_item.component.html',
styleUrls: ['./edit_item.component.scss']
})
export class EditItemComponent implements OnInit {
stateCtrl: FormControl;
states = [....some data....];
constructor(private route: ActivatedRoute, private router: Router) {
this.stateCtrl = new FormControl();
this.filteredStates = this.stateCtrl.valueChanges.startWith(null).map(name => this.filterStates(name));
}
ngOnInit(): void {
}
filterStates(val: string) {
return val ? this.states.filter((s) => new RegExp(val, 'gi').test(s)) : this.states;
}
}
다음과 같은 오류가 발생합니다. formControl
지시문을 찾지 못한 것 같습니다 .
'입력'의 알려진 속성이 아니므로 'formControl'에 바인딩 할 수 없습니다.
여기서 문제는 무엇입니까?
formcontrol
아니라 (소문자) 라고 말하는 경우 formControl
— webpack html-loader를 통해 템플릿을 실행하는 경우 다음과 같이 도움이 될 것입니다. stackoverflow.com/a/40626329/287568
formControl
로 가져와야ReactiveFormsModule
합니다 . 기능 모듈에서 사용하는 경우를 대비 하여.FormControl