私は流星の初心者です。流星ガイドのこのリンクをたどって、Meteor.userドキュメントにフィールドを追加しています。
Template.CustomDataForm.events({
"click [data-action='Customer/insert']": function (event) {
event.preventDefault();
var name = $('[name=name]').val();
var email = $('[name=email]').val();
var phone = $('[name=phone]').val();
var address = $('[name=address]').val();
const personalInfo = {
Name: name,
Email: email,
Phone: phone,
Address: address,
};
// I want to add personalInfo as a top-level field onto the user document
Meteor.call('updateInfo',personalInfo);
}
});
サーバー側では、この渡された情報で Meteor.user.update を実行するメソッドを記述しました
Meteor.methods({
'updateInfo': function (newpersonalInfo) {
console.log("Updating Info ..."+newpersonalInfo.Name+" "+newpersonalInfo.Address+" "+Meteor.userId()) ;
const proInfo = {
Name: newpersonalInfo.Name,
Email: newpersonalInfo.Email,
Phone: newpersonalInfo.Phone,
Address: newpersonalInfo.Address,
};
console.log("Updating for user "+Meteor.userId());
Meteor.users.update(Meteor.userId(), {
$set: {
personaInfo: proInfo
}
});
console.log("After Updating"+Meteor.user());
}
});
カスタムデータの公開はこちら
Meteor.publish('Meteor.users.personalInfo', function ({ userIds }) {
// Validate the arguments to be what we expect
new SimpleSchema({
userIds: { type: [String] }
}).validate({ userIds });
// Select only the users that match the array of IDs passed in
const selector = {
_id: { $in: userIds }
};
// Only return one field, `personalInfo`
const options = {
fields: { personalInfo: 1 }
};
return Meteor.users.find(selector, options);
});
定期購読はこちら
Template.profile.rendered = function () {
Meteor.subscribe('Meteor.users.personalInfo',Meteor.userId());
if (Meteor.user() && Meteor.user().personalInfo) {
name = Meteor.user().profileInfo.Name;
$('[id=profile-name]').val(name);
}
}
しかし、Javascript コンソールでは
Meteor.user(); の出力 Javascript コンソールでは、personalInfo をトップレベル フィールドとして期待していましたが、何もありません。
サーバー側のログは
I20160528-11:04:27.725(5.5)? 更新後[対象オブジェクト]
ここで何が壊れているのかわかりませんでしたか?
私の質問を読んでくれてありがとう
更新:この問題を再現するための手順を追加しました