这是我的angularjs表和响应
<table class="table myCustomTable">
<thead>
<tr>
<th>Name</th>
<th>Answer</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="intends in data | filter: searchKeyword">
<td><a href="#/intents/{{intends.id}}">{{intends.name}}</a></td>
<td>{{intends.answer}}</td>
</tr>
</tbody>
</table>
点击名称我想重定向到该页面的页面
我想要关于那个id
的嫌疑人