我有一張桌子,其中1 row
必須鏈接到其他東西。AngularJs重定向
現在我有這樣的:
<table class="table table-hover">
<thead>
<tr>
<th>Functie</th>
<th>Bedrijf</th>
<th>Naam</th>
<th>Achternaam</th>
</tr>
</thead>
<tbody ng-show="!homeCtrl.loading">
<tr ng-repeat="employee in homeCtrl.employees" ng-click="homeCtrl.redirectToShow(employee.EmployeeId)">
<td>{{ employee.Role }}</td>
<td>{{ employee.Company }}</td>
<td>{{ employee.FirstName }}</td>
<td>{{ employee.LastName }}</td>
<td ng-show="homeCtrl.canEdit" ng-click="homeCtrl.redirectToEdit(employee.EmployeeId)"><span class="glyphicon glyphicon-pencil"></span></td>
</tr>
</tbody>
</table>
最後td
有鏈接到別的東西。但現在所有的鏈接都是一樣的,我怎麼能管理它?
(In the ng-click method I redirect)
你有很多選擇,接受回答..或至少對任何人的答覆,如果有什麼不幫助你..謝謝:) –
@PankajParker是的,你是對的,在這裏很好的幫助! – Jamie
很高興知道,你迴應了它。Thnaks :-) –