I have the following problem with angularjs and spring-data-rest. I want to create a view for a fee. so in my html i have a fee table with different fees.
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>Name</th>
<th>Setup in <i class="glyphicon glyphicon-euro"></i></th>
<th>Basic Period</th>
<th class="text-right">{{ 'ACTIONS' | translate }}</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="fee in billing">
<td>{{ fee.name }}</td>
<td><span ng-hide="editMode">{{ fee.setupAmountEur }}</span></td>
<td><span ng-hide="editMode">{{ fee.basic.period }}</span></td>
<td>
<a class="btn btn-info pull-right" href="{{fee._links.self.href}}">{{ 'FEES_LINK' | translate }}</a>
</td>
</tr>
</tbody>
</table>
When i click on the FEES_LINK the browser shows the plain json. What i want is to have a new html site. So i dont know how i can do the angular http.get to my self link?
Can someone help, please?