智能表不显示

时间:2015-01-14 20:28:49

标签: angularjs smart-table

我是AngularJS和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

谢谢!

2 个答案:

答案 0 :(得分:3)

轻松修复

更改此行:

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

到此:

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

并重新排序索引文件中的脚本标记,以使angular在智能表之前

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

答案 1 :(得分:1)

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

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

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