[ANGULAR] Angular의 선택 옵션에서 선택한 개체를 가져옵니다
ANGULARAngular의 선택 옵션에서 선택한 개체를 가져옵니다
해결법
-
1.이렇게 해보십시오.
이렇게 해보십시오.
선택 대신 NGModelChange를 사용하여 NGModel을 추가하십시오.
component.html.
<select class="form-control col-lg-8" #selectedValue name="selectedValue" id="selectedValue" [(ngModel)]="selectedValue" (ngModelChange)="assignCorporationToManage($event)"> <option *ngFor="let corporation of user_corporations" [ngValue]="corporation">{{corporation.corp_name}}</option> </select>
구성 요소
assignCorporationToManage(selectedValue) { console.log(selectedValue) }
from https://stackoverflow.com/questions/46536815/getting-the-selected-object-in-select-option-in-angular by cc-by-sa and MIT license
'ANGULAR' 카테고리의 다른 글
[ANGULAR] Firestore와 Geofirestore에서 작동하지 않는 앵귤러 유니버설 (SSR) (0) | 2020.11.30 |
---|---|
[ANGULAR] Angular 2 Template Typescript에서 JSON 객체 매개 변수를 표시하는 방법 (0) | 2020.11.30 |
[ANGULAR] 차트는 Angular2 구성 요소에 표시되지 않습니다 (0) | 2020.11.30 |
[ANGULAR] Angular / Typescript 프로젝트에서 iScroll을 사용하는 방법 (0) | 2020.11.30 |
[ANGULAR] Angular 2 AOT 내 구성 요소의 ModuleID와 비슷하지 않습니다 (0) | 2020.11.30 |