Meteor.js添加用户帐户注册的更多信息

下面是我的代码,但由于某种原因,名字和姓氏没有保存? 在Meteor中创build新用户时如何保存更多信息? 我正在使用accounts-password包。

Accounts.createUser({ email: email, password : password, profile: {firstName: firstName, lastName: lastName} }, function (err) { if (err) { // Inform the user that account creation failed } else { // Success. Account has been created and the user // has logged in successfully. } }); 

onCreateUsercallback应该返回将被保存到数据库中的finall user对象。 你所遇到的问题来自这样一个事实,即profile数据需要手动挂接到user对象上(更多详细信息,请参阅meteor文档 ):

 Accounts.onCreateUser(function(options, user) { // [...] if (options.profile) user.profile = options.profile; return user; });