考虑:
<table class="table table-striped table-bordered">
<thead>
<th style="width:180px;">Faculty Name <a ng-click="sort_with('a_faculty');"></a></th>
<th>Award/Fellowship <a ng-click="sort_with('a_name');"></a></th>
<th style="width:120px;text-align:center;">Year <a ng-click="sort_with('a_year');"></a></th>
</thead>
<tbody>
<tr ng-repeat="data in searched = (file | filter:search | orderBy : base :reverse) | beginning_data:(current_grid-1)*data_limit | limitTo:data_limit">
<td>{{data.a_faculty}}</td>
<td>{{data.a_name}}</td>
<td>{{data.a_year}}</td>
</tr>
</tbody>
</table>
当我使用它时,它仅检索文本,不检索超链接。我想要带有超链接的文本。