1

我从 GitHub API 获得了用户名和电子邮件地址。但它没有显示在 Meteor 中。它适用于 profile.name 但不适用于 services.github.username 或电子邮件

 Template.input_box.events = {
"keydown input#message" : function(event){
    if (event.which == 13) { 
    // 13 is the enter key event

        if (Meteor.user())
        {
            var name = Meteor.user().profile.name;
            // var git_userid = Meteor.user().services.github.username;             
            // var git_email = Meteor.user().services.github.email;
        }

这很奇怪,因为 Meteor.user().services.github.username; 在控制台模式下工作,但如果我输入我的代码并在本地主机中运行,它不会显示任何内容......调用它的代码

    {{git_email}} {{git_userid}}  // does not work
    {{name}}    // works

如何使它们工作,以便我可以在我的 HTML 中插入电子邮件和用户名信息。

谢谢

4

1 回答 1

2

来自流星文档

默认情况下,当前用户的用户名、电子邮件和个人资料会发布到客户端。

因此,您需要在服务器上手动发布用户的“服务”字段。

Meteor.publish("userData", function () {
  return Meteor.users.find({_id: this.userId},
                           {fields: {'services': 1}});
});
于 2013-09-19T18:03:32.697 回答