0

大家好,我正在尝试通过电子邮件进行用户更改密码方法,我当前的代码是:

<html>
<body>
    <p>Hello ${userInstance.user.username}, your password will be set to ${userInstance.new_pass} to finalise your password request, please click the link below.</p>
    <h2><g:link controller="reset" action="reset" params="[id:userInstance.user.id]" absolute="true">Please change my password</g:link></h2>
</body>

当前链接仅将用户 ID 参数发送到我在 grails 中的方法。我也希望将密码作为参数发送!通过此链接发送 userInstance.new_pass 的可能解决方案是什么?

ps 我正在使用 grails 邮件插件。

4

1 回答 1

0

你试过这个吗?

 <g:link controller="reset" action="reset" params="[id:userInstance.user.id;password:userInstance.user.password]" absolute="true">Please change my password</g:link>
于 2013-02-04T12:07:06.853 回答