<ngb-accordion #acc="ngbAccordion" >
<ngb-panel *ngFor="let item of Array;">
<ng-template ngbPanelTitle>
<label>{{item.name}}</label>
<span style="float: right;">
<button type="button" name="approve" class="btn btn-success" (click)="customFunction1()" id="approve">Approve</button>
<button name="reject" class="btn btn-danger" (click)="customFunction2()" id="cancel">Reject</button>
</span>
</ng-template>
<ng-template ngbPanelContent>
<!-- some content -->
</ng-template>
</ngb-panel>
</ngb-accordion>
从父窗口,我的控件切换到新窗口,其中包含框架集中的所有数据。我正在尝试使用占位符定位元素。在浏览器控制台中,当我使用此定位器时,它向我显示了唯一的DOM元素,但在代码中却向我抛出异常。 需要帮助。