Angular中未形成响应数据表

时间:2019-06-08 20:41:46

标签: jquery html angular

<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.19/css/jquery.dataTables.min.css">

<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<table id="exemple" class="table table-striped table-bordered table-sm row-border hover" datatable [dtOptions]="dtOptions"
  [dtTrigger]="dtTrigger">
  <thead>
    <tr>
      <th>Name</th>
      <th>Email</th>
      <th>PhoneNum</th>
    </tr>
  </thead>
  <tbody>
    <tr *ngFor="let user of users">
      <td>{{ user.firstName }}</td>
      <td>{{ user.email }}</td>
      <td>{{ user.phoneNum }}</td>
    </tr>
  </tbody>
</table>
<script type="text/javascript">
    $(document).ready(function () {
        $('#example').DataTable({


            responsive: true


        });
      });
    </script>

这是我的 datatable组件中的 datatable.component.html 。 我已经尝试了很多次来制作响应式数据表。但是每次形成静态数据表时,我都希望该数据表带有搜索栏和下一页选项等。任何人都可以告诉解决方案。任何建议将不胜感激。

0 个答案:

没有答案