gpt4 book ai didi

ruby-on-rails - 添加指向 simple_form 提示的链接?

转载 作者:行者123 更新时间:2023-12-04 05:58:23 25 4
gpt4 key购买 nike

有没有办法在来自 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) }

最佳答案

您所需要的只是插值。

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

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

关于ruby-on-rails - 添加指向 simple_form 提示的链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14850820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com