下面是我的代码,但由于某种原因没有保存名字和姓氏?在 Meteor 中创建新用户时如何保存附加信息?我正在使用帐户密码包。
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.
}
});