如何使用Meteor按字母顺序对用户进行排序?

时间:2018-11-29 09:09:14

标签: mongodb meteor meteor-accounts

我正在使用流星用户帐户软件包。我想按字母升序对所有用户进行排序。我的收藏结构是这样的

{
    "_id" : "6J3jjZB7DMRyPcTxh",
    "createdAt" : ISODate("2018-05-28T13:07:03.428Z"),
    "services" : {
        "password" : {
            "bcrypt" : "$2b$10$1W2g1Ceal39uUz0JVZ1JSuT1M9gKfKas.5VZ8ThH2Ga6cPp7SY6zO"
        },
        "resume" : {
            "loginTokens" : []
        }
    },
    "emails" : [ 
        {
            "address" : "vishnu@gmail.com",
            "verified" : false
        }
    ],
    "profile" : {
        "username" : "vishnu singh",
        "regPhone" : "8088***0297",
        "discount" : "66.66",
        "isDeleted" : false,
        "role" : "user"
    }
} 

查询是:

    responseArray = Meteor.users.find({ 'profile.isDeleted': { $ne: true }, 'profile.role': { $ne: 'admin' } }, { sort: { 'profile.username': 1 }, skip: skip, limit: limit }).fetch();

我的跳过值为0,限制为25。第二次更改跳过限制,以跳过25和限制25。如何根据用户名对所有用户进行排序?请帮忙。

1 个答案:

答案 0 :(得分:0)

问题与大小写有关。我认为MongoDB不支持区分大小写的查找和排序。我使用了聚合,最后得到了解决方案。

  responseArray = Meteor.users.aggregate([{
                    $match: {
                        'profile.isDeleted': { $ne: true },
                        'profile.role': { $ne: 'admin' }
                    }
                },
                {
                    "$project": {
                        profile: 1,
                        emails: 1,
                        "insensitive": { "$toLower": "$profile.username" }
                    }
                },
                { "$sort": { "insensitive": 1 } },
                { "$skip": skip },
                { "$limit": limit }
            ])