I have an AngularJS
, JS
, JQ
, HTML5
web app, which can send different http methods to project's RESTful Web Service
and receive responses from it. Response comes in JSON and looks like this:
This is displayed in a <pre>
element this way:
<div ng-controller="responseController">
<span class="status-{{response.status}}">{{response.code}} {{response.description}}</span>
<pre>{{response.data}}</pre>
<p id="responseHeaders">Response headers:</p>
<table>
<tr ng-repeat="header in response.headers">
<td><a href="#" ng-click="addToHeaders(header)">{{header.name}}</a></td>
<td><span>{{header.value}}</span></td>
</tr>
</table>
</div>
What I want is to have all the URL's that are received in JSON clickable, so I could hang a ng-click
on them and go on with next steps. But I can't do it in a <pre>
element.
Any ideas how this can be solved? Every useful answer is highly appreciated and evaluated.
Thank you.