如何将变量从服务器端传递到客户端js Meteor

时间:2016-07-19 16:21:04

标签: javascript meteor

我正在使用外部API。我想显示登录用户的昵称(steam API)

server main.js

  Meteor.startup(function () {
    ServiceConfiguration.configurations.upsert(
      { service: 'steam' },
      {
        $set: {
          loginStyle: 'redirect',
          timeout: 10000 // 10 seconds
        }
      }
    );

    Accounts.onLogin(function() {
        var steam64Id = Meteor.user().profile.id;
        console.log(steam64Id + " is logged in.");

        // To retrieve more details about user

        var steamApiKey = ("XXXXXXXXXXXXX");
            var result = Meteor.http.get('http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=xxxxxxxxx&steamids=76561197977045111');
                console.log(result.data.response.players[0].personaname);  
    });
  });

这会在控制台日志中返回“我的昵称”,但我想在客户端检索此变量,以便我可以将{{Nickname}}添加到客户端js模板并在模板中显示用户的昵称

1 个答案:

答案 0 :(得分:0)

最明显的方法是将该结果添加到用户记录中的用户个人资料中。然后它会自动同步到客户端并可在那里使用。

var steamApiKey = ("XXXXXXXXXXXXX");
var result = Meteor.http.get('http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=xxxxxxxxx&steamids=76561197977045111');
Meteor.users.update(Meteor.userId(),
  { $set: { 'profile.personaname': result.data.response.players[0].personaname }}
);

在客户端,让自己成为一个帮助者(全局或一个特定于您需要的模板)来获取此值:

Nickname(){
  return Meteor.user().profile.personaname;
}

请注意,用户下的个人资料对象会自动发布到客户端,因此您无需为其制作特殊的出版物。