使用accounts-password
和accounts-ui
模块创建用户后,当我在控制台中调用Meteor.user()
时,我无法获得完整的个人资料,只有_id
和username
,即使文档中有更多内容,例如createdAt
记录。
如果我使用这些模板,就会出现同样的问题:
<template name="user_list">
<div class="user-list">
<h1>Users</h1>
<ul>
{{#each allUsers}}
{{> user_item}}
{{/each}}
</ul>
</div>
</template>
<template name="user_item">
<li class="user-item">
<p><b>{{username}}</b></p>
<p>Created: {{createdAt}}</p>
</li>
</template>
......由这位助手支持:
Template.user_list.helpers({
allUsers: function () {
return Meteor.users.find({});
}
});
在这种情况下,user_list模板很好地迭代用户,并显示用户名,但createdAt
帮助程序失败,即使我通过meteor mongo
记录肯定存在。我没有删除自动发布;我的设置仍然完全打开。为什么我无法访问其余的用户记录?
答案 0 :(得分:6)
默认情况下,accounts包只发布id,username和profile字段。要发布更多内容,请将此“通用”发布添加到服务器:
Meteor.publish(null, function() {
if (this.userId != null) {
return Meteor.users.find({
_id: this.userId
}, {
fields: {
'createdAt': 1,
}
});
} else {
return this.ready();
}
});
注意:即使没有用户确保与Spiderable包的兼容性,它也会返回this.ready()
。