如何使用sails js中的对象键对记录进行排序

时间:2016-06-10 13:23:09

标签: sails.js sails-mongo

朋友您好我正在使用sails js编写Web服务。我正在获取所有帖子并得到以下回复:

[
  {
     id: "559458c51ccc9c716dabf666",
     comments : [],
     liked : {
         data : [
            { 
              id: "559458c51eee9c716dabf666",
              username : "abc"
            },
            { 
              id: "559458c51eee9c716dabf111",
              username : "xyz"
            }
         ],
         count : 2
     }
  },

  {
     id: "559458c51ccc9c716dabf666",
     comments : [],
     liked : {
         data : [
            { 
              id: "559458c51eee9c716dabf666",
              username : "abc"
            },
            { 
              id: "559458c51eee9c716dabf666",
              username : "pqr"
            },
            { 
              id: "559458c51eee9c716dabf111",
              username : "xyz"
            }
         ],
         count : 3
     }
  }
]

我想使用喜欢的帖子数对上述记录进行排序。在上面的回复中,我们被视为liked { data : [], count : 2}

我这样做:

getPost: function(callback) {
        Posts.find().sort('liked.count desc').populateAll().exec( function (err, posts) {
            if(err) {
                return callback({error:err, code:500});
            }
            if (posts) {
                callback(null,posts);
            }

        });
    }

如何使用count

中的liked : {}对帖子进行排序

1 个答案:

答案 0 :(得分:0)

我已从sort('liked.count desc')移除了getPost

getPost: function(callback) {
        Posts.find().populateAll().exec( function (err, posts) {
            if(err) {
                return callback({error:err, code:500});
            }
            if (posts) {
                callback(null,posts);
            }

    });
}

在控制器中,我在getPost之上调用如下:

getTopTip : function (req,res) {
        Posts.getPost(function (err,tips) {
            if(err) {
                return res.notFound();
            }

            // console.log(tips);
            res.json({'count':tips.length, 'data':tips});

        });
    }

我使用console.log检查了响应,我收到如下响应:

[
  {
     id: "559458c51ccc9c716dabf666",
     comments : [],
     likes : [
            { 
              id: "559458c51eee9c716dabf666",
              username : "abc"
            },
            { 
              id: "559458c51eee9c716dabf111",
              username : "xyz"
            }
         ]
  },

  {
     id: "559458c51ccc9c716dabf666",
     comments : [],
     likes :  [
            { 
              id: "559458c51eee9c716dabf666",
              username : "abc"
            },
            { 
              id: "559458c51eee9c716dabf666",
              username : "pqr"
            },
            { 
              id: "559458c51eee9c716dabf111",
              username : "xyz"
            }
         ]
  }
]

我在那个调用getPost的控制器中写了一个sort函数。该功能如下所示:

function sortByKey(array, key) {
    return array.sort(function(a, b) {
        var x = a[key]; var y = b[key];
        return ((x > y) ? -1 : ((x < y) ? 1 : 0));
    });
} 

getTopTip中,我将这种排序函数调用如下:

getTopTip : function (req,res) {
        Posts.getPost(function (err,tips) {
            if(err) {
                return res.notFound();
            }
            if(tips) {
                tips = sortByKey(tips, 'likes')
                res.json({'count':tips.length, 'data':tips});
            }
        });
    }

它有效。我的帖子按降序排列。