我试图创建一个帐户页面,用户可以在其中更新其个人资料信息和/或更新其密码。我目前正在使用此格式:
{{#autoForm collection="Meteor.users" doc=profile id="myAccount" type="update"}}
<fieldset>
<legend>My Account</legend>
{{> afQuickField name="username"}}
{{> afQuickField name="profile.firstName"}}
{{> afQuickField name="profile.lastName"}}
{{> afQuickField name="emails.0.address"}}
{{> afQuickField name="emails.0.verified" class="i-checks"}}
{{> afQuickField name="password"}}
</fieldset>
<button type="submit" class="btn btn-primary">Update</button>
{{/autoForm}}
据我了解,我需要使用Accounts.setPassword来更新用户密码。所以我认为我必须使用一个钩子,但onSubmit钩子不适用于类型更新。
使用此类表单更新密码的最佳方法是什么?
答案 0 :(得分:0)
这样的工作是否有效:https://github.com/aldeed/meteor-autoform#normal其中联系表单是表单的名称?
AutoForm.hooks({
contactForm: {
onSubmit: function (insertDoc, updateDoc, currentDoc) {
if (customHandler(insertDoc)) {
this.done();
} else {
this.done(new Error("Submission failed"));
}
return false;
}
}
});