2

我无法为我的Smart Table Angular 模块做一个简单的排序。我不应该只是能够添加st-sort="propertyName"到我的th吗?

JS:

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

app.controller('SomeController', ['$scope', function($scope) {
  $scope.items = [{color:'red'},{color:'blue'}];
}]);

html:

<html ng-app="app"><body ng-controller="SomeController">
  <table st-table="items">
    <thead>
      <tr>
        <th st-sort="color">Color</th>
      </tr>
    </thead>
    <tbody>
      <tr ng-repeat="item in items">
        <td>{{item.color}}</td>
      </tr>
    </tbody>
  </table>
</body></html>

如果单击Colors th,则不会发生任何事情并且数据不会排序。我错过了什么?现场演示:http: //jsbin.com/ganine/2/edit

4

2 回答 2

8

您应该像这样smart-table向您的模块添加模块依赖项app

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

请参阅工作示例

于 2015-02-27T19:32:25.153 回答
3

您需要加载智能表脚本并将'smart-table'模块引用添加到您的app模块定义中。

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

您可以在 jsbin 中看到我的更改 - http://jsbin.com/bunokerife/3/edit

于 2015-02-27T20:43:28.100 回答