1
我有以下的html代碼片段。我正在使用angular2,ng-bootstrap ng選項卡。我的問題是,如何在點擊標籤時調用方法點擊? 我加了(點擊),但是我看到fetchNews()方法在我點擊標籤時根本沒有被調用。我究竟做錯了什麼?單擊標籤時單擊監聽器 - angular2和ng bootstrap
<ngb-tab title="Active" (click)="fetchNews('active')">
<ng-template ngbTabContent>
<table class="table table-sm table-striped">
<thead>
<tr>
<th>Title</th>
<th>Description</th>
<th>Attachment</th>
<th>Start Date</th>
<th>End Date</th>
<th>Actions</th>
</tr>
</thead>
<tr *ngFor="let item of news">
<td>{{item.title}}</td>
<td>{{item.description | ellipsis:25}}</td>
<td>{{item.attachmentUrl | ellipsis:25}}</td>
<td>{{item.startDate | date: 'MM/dd/yyyy hh:mm a'}}</td>
<td>{{item.endDate | date: 'MM/dd/yyyy hh:mm a'}}</td>
<td>
<button type="button" class="btn btn-secondary btn-sm" (click)="showNewsModal('active',item, true)">
Modify
</button>
</td>
</tr>
</table>
</ng-template>
</ngb-tab>
感謝那些工作! – Karu
雖然我注意到了一件事。這隻有當我點擊標籤標題時纔有效。如果我點擊標題以外的其他地方,那麼它不會識別點擊。我如何讓聽衆傾聽點擊該標籤上的任何地方而不僅僅是標籤標題。 – Karu
我更新了答案。你可以試試 – yurzui