<table class="table table-striped table-bordered" id="editable-datatable">
<thead>
<tr>
<th>Username</th>
<th>Email</th>
<th>tel</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="client in clients" id="1" class="gradeX">
<td>{{client.username}}</td>
<td>{{client.email}}</td>
<td>{{client.tel}}</td>
<td collapse=3>
<a style="border: 1px solid rgba(10, 6, 6, 0.25); padding: 4px;" ng-href="#!/client/{{client.id}}" ng-click="ClientDetailsController()">
<i class="icon-eye-open"></i> Details
</a>
<span style="margin-left: 10px"><a data-toggle="modal" href data
target="#exampleModal" ng-click="setID(client.id)" >
<i class="icon-remove-sign"></i> Delete
</a></span>
</td>
</tr>
</tbody>
</table>
这不打印任何东西,没有输出。由于我使用的是python 2.7.13,它应该可以工作。
有人可以说它有什么问题。它不会运行,也不会给我任何错误吗?