GitHub API からユーザー名とメール アドレスを取得しました。しかし、Meteor には表示されません。profile.name では完全に機能しますが、services.github.username または email では機能しません
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 に電子メールとユーザー名の情報を挿入できるようにするにはどうすればよいですか。
ありがとう