gpt4 book ai didi

meteor - 发布有关Meteor.users的某些信息,以及有关Meteor.user的更多信息

转载 作者:行者123 更新时间:2023-12-03 08:13:35 25 4
gpt4 key购买 nike

我想为所有用户提供对一组特定字段的客户端访问权限,而我只想为当前用户访问更多的字段。我该如何编写发布代码来完成此任务?

最佳答案

Meteor documentation开始:

Meteor.publish("userData", function () {
return Meteor.users.find({_id: this.userId},
{fields: {'other': 1, 'things': 1}});
});

并且:
Meteor.publish("allUserData", function () {
return Meteor.users.find({}, {fields: {'nested.things': 1}});
});

希望这可以帮助。

关于meteor - 发布有关Meteor.users的某些信息,以及有关Meteor.user的更多信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13151879/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com