다중 서브어셈블리의 주소 지정 가능 가져오기
1553 단어 typescriptangular
<div *ngFor="let address of addresses">
<app-select
[items]="address.cities"
bindLabel="name"
bindValue="id">
</app-select>
</div>
그러나 우리는 어떻게 타자 스크립트 코드에서 그것들의 주소 찾기성을 얻습니까?@ViewChildren(SelectComponent)
SelectComponents:
QueryList<SelectComponent>;
//Then in ngAfterViewInit():
this.SelectComponents.forEach(select=>{
debugger;
});
답은QueryList를 @ViewChildren과 함께 사용하는 것입니다
Reference
이 문제에 관하여(다중 서브어셈블리의 주소 지정 가능 가져오기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/jwp/get-addressibility-to-multiple-child-components-3kjb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)