5

有没有办法在表单中的特定输入的提示中添加链接simple_form

例如 - “忘记密码?” 在密码的输入提示中。

这样可以避免一些样式将链接附加到输入框。

可能是一个愚蠢的问题,但我不知道该怎么做:/

提前致谢。

编辑(这种语法是错误的,但希望它能给出我想说的意思,特别是在第 3 行):

=simple_form_for(resource, :as => resource_name, :url => session_path(resource_name)) do |f|
    =f.input :email, placeholder: "me@example.com"                             
    =f.input :password, hint: { link_to "Forgot your password?", new_password_path(resource_name) }
4

1 回答 1

17

您所需要的只是插值。

<%= f.input :password, hint: "#{link_to 'Forgot your password?', new_password_path(resource_name)}" %>

这将在提示中插入您的代码。在这种情况下,忘记密码链接。

于 2013-02-13T10:20:16.237 回答