0

我希望能够向 Meteor 应用程序的用户重新发送电子邮件验证链接,以防他们意外删除了电子邮件验证电子邮件。

我有一个 ID 为“resentEmailVerificationLink”的链接

单击链接时,我的客户端中有以下代码(警报只是为了向我自己展示函数在出现错误之前的距离):

Template.dashboard.events({
    'click #resentEmailVerificationLink' : function(event) {
        event.preventDefault();
        var id = Meteor.userId();
        alert('clicked: ' + id);
        Accounts.sendVerificationEmail(id);
        alert('Verification Email resent');
        return false;   // Stops page from reloading
    }
)};

我知道 sendVerificationEmail 是一个服务器函数,但我不知道如何在单击验证电子邮件链接后在服务器中调用此函数(我有点像 Meteor 新手)。

关于如何实现这一点的任何想法,因为目前它不适用于以下错误:Uncaught TypeError: Accounts.sendVerificationEmail is not a function

注意:Meteor.Accounts.sendVerificationEmail(id); 也不起作用(但它确实会产生不同的错误。

4

1 回答 1

1

您可以尝试使用服务器端方法,只需创建一个传递 attrs 并在服务器上调用http://docs.meteor.com/#/full/accounts_sendverificationemail。有关流星方法的更多信息:http: //docs.meteor.com/#/full/meteor_methods

于 2015-11-14T14:28:50.933 回答