«angular-forms» 태그된 질문

4
'입력'의 알려진 속성이 아니므로 'formControl'에 바인딩 할 수 없음-Angular2 Material Autocomplete issue
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"; …


14
Angular2 ngModel이 양식 태그 내에서 사용되는 경우 name 속성을 설정하거나 양식을 지정해야합니다.
Angular 2 에서이 오류가 발생합니다. core.umd.js : 5995 예외 : 잡히지 않음 (약속) : 오류 : app / model_exposure_currencies / model_exposure_currencies.component.html : 57 : 18 오류 : ngModel이 양식 태그 내에 사용 된 경우 이름 속성은 다음 중 하나 여야합니다. 집합 또는 양식 컨트롤은 ngModelOptions에서 '독립형'으로 정의해야합니다. Example 1: <input …

8
Promise 또는 Observable을 반환 할 것으로 예상되는 검증 인
Angular 5에서 사용자 지정 유효성 검사를 시도하지만 다음 오류가 발생합니다. Expected validator to return Promise or Observable 값이 필수와 일치하지 않는 경우 양식에 오류를 반환하고 싶습니다. 여기에 내 코드가 있습니다. 이것은 내 양식이있는 구성 요소입니다. constructor(fb: FormBuilder, private cadastroService:CadastroService) { this.signUp = fb.group({ "name": ["", Validators.compose([Validators.required, Validators.minLength(2)])], "email": ["", Validators.compose([Validators.required, …

12
<input> 요소에 초점 설정
Angular 5로 프런트 엔드 응용 프로그램을 작업 중이며 검색 상자를 숨겨야하지만 버튼을 클릭하면 검색 상자가 표시되고 초점이 맞춰져야합니다. 지시어 등으로 StackOverflow에서 찾은 몇 가지 방법을 시도했지만 성공할 수 없습니다. 다음은 샘플 코드입니다. @Component({ selector: 'my-app', template: ` &lt;div&gt; &lt;h2&gt;Hello&lt;/h2&gt; &lt;/div&gt; &lt;button (click) ="showSearch()"&gt;Show Search&lt;/button&gt; &lt;p&gt;&lt;/p&gt; &lt;form&gt; &lt;div &gt; &lt;input *ngIf="show" …

10
Angular 2 : 양식이 연결되지 않았기 때문에 양식 제출이 취소되었습니다.
양식이 포함 된 모달이 있는데, 모달이 파괴되면 콘솔에 다음 오류가 발생합니다. 양식이 연결되지 않아 양식 제출이 취소되었습니다. 모달은 내 최상위 요소 인에 &lt;modal-placeholder&gt;직접 자식 인 요소에 추가됩니다 &lt;app-root&gt;. DOM에서 양식을 제거하고 Angular 2에서이 오류를 제거하는 올바른 방법은 무엇입니까? 나는 현재componentRef.destroy();
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.