1

我是 AngularJS 和 Smart Table 的新手……我正在尝试一个简单的 Smart Table 示例,但由于某种原因,我似乎无法显示我的表格数据。

这是我的html:

    <body ng-controller="basicsCtrl">
  <p>Hello {{name}}!</p>
  <table st-table="rowCollection" class="table table-striped">
    <thead>
      <tr>
        <th>first name</th>
        <th>last name</th>
        <th>birth date</th>
        <th>balance</th>
        <th>email</th>
      </tr>
    </thead>
    <tbody>
      <tr ng-repeat="row in rowCollection">
        <td>{{row.firstName}}</td>
        <td>{{row.lastName}}</td>
        <td>{{row.birthDate}}</td>
        <td>{{row.balance}}</td>
        <td>{{row.email}}</td>
      </tr>
    </tbody>
  </table>
</body>

这是我的js:

    var app = angular.module('myApp', ['smartTable.table']);

    app.controller('basicsCtrl', ['$scope', function (scope) {
    scope.rowCollection = [
        {firstName: 'Laurent', lastName: 'Renard', birthDate: new Date('1987-05-21'), balance: 102, email: 'whatever@gmail.com'},
        {firstName: 'Blandine', lastName: 'Faivre', birthDate: new Date('1987-04-25'), balance: -2323.22, email: 'oufblandou@gmail.com'},
        {firstName: 'Francoise', lastName: 'Frere', birthDate: new Date('1955-08-27'), balance: 42343, email: 'raymondef@gmail.com'}
    ];
    scope.name = "World";
}]);

这是我的 plunker 代码: http ://plnkr.co/edit/335mfrwqHQXewqXJ4N0I?p=preview

谢谢!

莎娜

4

2 回答 2

3

容易修复

改变这一行:

var app = angular.module('myApp', ['smartTable.table']);

对此:

var app = angular.module('myApp', ['smart-table']);

并重新排序索引文件中的脚本标签,使角度在智能表之前

这是更新的 plunk http://plnkr.co/edit/vHCbrN0cKDplxqwT78kf?p=preview

于 2015-01-14T20:36:18.217 回答
1

与同一个例子有类似的问题。你是什​​么意思重新排序我的脚本标签?

<script src="scripts/NonLibScripts/ScheduleScript.js"></script>
<script src="scripts/NonLibScripts/DataScript.js"></script>

这还不够吗?我正在尝试从 DataScript 填充智能表数据。

于 2015-08-05T09:00:37.987 回答