使用Meteor Autoforms更新密码

时间:2017-07-13 21:04:39

标签: meteor passwords meteor-autoform

我试图创建一个帐户页面,用户可以在其中更新其个人资料信息和/或更新其密码。我目前正在使用此格式:

{{#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钩子不适用于类型更新。

使用此类表单更新密码的最佳方法是什么?

1 个答案:

答案 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;
    }
  }
});