2016-12-06 40 views

回答

1

只排除其_id

Template.listEmployees.helpers({ 
    employees() { 
    return Meteor.users.find({ _id: { $ne: Meteor.userId() }}, { sort: { createdAt: -1 }}); 
    } 
}); 
相關問題