Parse + Angular orderBy Issue

时间:2015-05-05 00:14:48

标签: javascript angularjs parse-platform angularjs-orderby

我在Angular中有一个表的ng-repeat。数据来自Parse。

    <tr dir-paginate="ticket in tickets | orderBy:sortType:sortReverse | itemsPerPage: 10">
        <td><input type="checkbox" class="checkthis" /></td>
        <td>{{ ticket.id }}</td>
        <td>${{ ticket.get("total").toFixed(2) }}</td>
        <td>${{ ticket.get("tax").toFixed(2) }}</td>
        <td>{{ ticket.get("paymentType") }}</td>
        <td>{{ ticket.createdAt | date: 'short' }}</td>
    </tr>

当我命令'id'或'createdAt'时,排序正常。如何按总额,税金或paymentType进行订购?

2 个答案:

答案 0 :(得分:1)

通过get()访问解析对象的属性,我认为orderBy:过滤器取决于拥有本机的getter。

因此,在角度方面,一种方法是创建一个扩展骨干对象的服务,并提供本机的getter和setter:

(function() {
    'use strict';
    angular.module('myApp.services').factory('MyClass', f);

    function f() {

        var MyClass = Parse.Object.extend("MyClass", {
            // instance methods

            // manually built getter like this
            attributeA : function() {
                return this.get("attributeA");
            },

        }, {
            // class methods    
        });

        // or code-built getters/setters like this
        _.each(["attributeB", "attributeC"], function(p) {
            Object.defineProperty(MyClass.prototype, p, {
                get: function() {return this.get(p);},
                set: function(aValue) {this.set(p, aValue);}
            });
        });
        return MyClass;
    }
})();

无论如何,即使您不需要orderBy的属性,这也许是一种很好的做法。例如,服务类是放置承诺返回查询的好地方。

答案 1 :(得分:1)

如果您的数据来自Parse JavaScript SDK,则会将其作为 Parse Objects 接收,您可以通过.toJSON()方法将其转换为更适合AngularJS的普通对象:

plainObject = parseObject.toJSON();