smart-table Angular 模块无法排序

smart-table Angular module unable to sort

我无法对 Smart Table Angular module 进行简单排序。难道我不能将 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

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

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

查看工作 example

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

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

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