0
我在我的數據庫中有一個主用戶,應該能夠查看系統中的所有用戶。如何返回除當前登錄用戶以外的Meteor.users內的所有用戶?
這是我的代碼,返回集合中的所有用戶。
Template.listEmployees.helpers({
employees: function() {
return Meteor.users.find({}, { sort: {createdAt: -1}});
}
});
是否有可能返回除當前登錄用戶以外的所有用戶?